Skip to content

Commit 37ecb00

Browse files
committed
Change package format and update to 1.1.1
1 parent 0c4e6b3 commit 37ecb00

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

deploy.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ cd distrib
3030

3131
for folder in "${target_folders[@]}"
3232
do
33-
cd $folder
33+
mv $folder arduinoOTA
3434
if [[ $folder == "windows_386" ]]; then
35-
zip -r ../arduinoOTA-$VERSION-$folder.zip bin/
35+
zip -r arduinoOTA-$VERSION-$folder.zip arduinoOTA/
3636
else
37-
tar cjf ../arduinoOTA-$VERSION-$folder.tar.bz2 bin/
37+
tar cjf arduinoOTA-$VERSION-$folder.tar.bz2 arduinoOTA/
3838
fi
39-
cd ..
39+
rm -rf arduinoOTA
4040
done
4141

4242
echo =======

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"time"
1515
)
1616

17-
const AppVersion = "1.1.0"
17+
const AppVersion = "1.1.1"
1818

1919
var compileInfo string
2020

0 commit comments

Comments
 (0)