mirror of
https://github.com/1technophile/OpenMQTTGateway.git
synced 2026-03-04 14:34:25 +01:00
18 lines
425 B
Bash
18 lines
425 B
Bash
echo "renaming bin files with the board name"
|
|
rename -v 's:/:-:g' .pio/build/*/*.bin
|
|
mkdir toDeploy
|
|
rename 's/.pio-build-//' .*.bin
|
|
cd .pio/libdeps
|
|
echo "zipping libraries per board"
|
|
for i in */; do zip -r "${i%/}-libraries.zip" "$i"; done
|
|
ls -la
|
|
mv *.zip ../../toDeploy
|
|
cd ../..
|
|
echo "zipping code and licence"
|
|
zip -r OpenMQTTGateway_sources.zip main LICENSE.txt
|
|
mv *.zip toDeploy
|
|
mv *.bin toDeploy
|
|
cd toDeploy
|
|
ls -la
|
|
cd ..
|