mirror of
https://github.com/peter-tanner/spidertron-squad-control.git
synced 2024-11-30 19:10:18 +08:00
6 lines
283 B
Bash
6 lines
283 B
Bash
|
v=$(grep "\"version\"" info.json | sed 's|.*:||;s|[",]||g;s| ||g')
|
||
|
n=$(grep "\"name\"" info.json | sed 's|.*:||;s|[",]||g;s| ||g')
|
||
|
#echo ${n}_${v}.zip
|
||
|
|
||
|
powershell -c "\$files = Get-ChildItem -Path . -Exclude .git,*.sh
|
||
|
Compress-Archive -Path \$files -DestinationPath ../${n}_${v}.zip"
|