We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c4e6b3 commit 37ecb00Copy full SHA for 37ecb00
deploy.sh
@@ -30,13 +30,13 @@ cd distrib
30
31
for folder in "${target_folders[@]}"
32
do
33
- cd $folder
+ mv $folder arduinoOTA
34
if [[ $folder == "windows_386" ]]; then
35
- zip -r ../arduinoOTA-$VERSION-$folder.zip bin/
+ zip -r arduinoOTA-$VERSION-$folder.zip arduinoOTA/
36
else
37
- tar cjf ../arduinoOTA-$VERSION-$folder.tar.bz2 bin/
+ tar cjf arduinoOTA-$VERSION-$folder.tar.bz2 arduinoOTA/
38
fi
39
- cd ..
+ rm -rf arduinoOTA
40
done
41
42
echo =======
main.go
@@ -14,7 +14,7 @@ import (
14
"time"
15
)
16
17
-const AppVersion = "1.1.0"
+const AppVersion = "1.1.1"
18
19
var compileInfo string
20
0 commit comments