Skip to content

Commit

Permalink
Make octoload work with .gcode files not .gco
Browse files Browse the repository at this point in the history
Cura works with `.gcode`
  • Loading branch information
MarcelRobitaille committed Jul 1, 2020
1 parent 9f31c60 commit c75203d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/octoload
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if [ "$1" = "watch" ]; then
watch_dir="/tmp/octoload"
mkdir -p "$watch_dir"

inotifywait --excludei "[^g][^c][^o]$" -m "$watch_dir" -e create -e moved_to -e close_write |
inotifywait --excludei "[^g][^c][^o][^d][^e]$" -m "$watch_dir" -e create -e moved_to -e close_write |
while read path action file; do
octo_upload "$path$file"
done
Expand Down

0 comments on commit c75203d

Please sign in to comment.