1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-19 12:51:47 +02:00

Added additional filetypes to filter.

.TAP and .NGC are now valid
This commit is contained in:
bdring
2018-09-21 15:57:19 -05:00
parent 207c20e880
commit 8a958b6b10
5 changed files with 59 additions and 2 deletions

19
command.sh Normal file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
function build_sketch()
{
local sketch=$1
# buld sketch with arudino ide
echo -e "\n Build $sketch \n"
arduino --verbose --verify $sketch
# get build result from arduino
local re=$?
# check result
if [ $re -ne 0 ]; then
echo "Failed to build $sketch"
return $re
fi
}