mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
10 lines
203 B
Bash
10 lines
203 B
Bash
#!/bin/bash
|
|
|
|
VERSION=$1
|
|
|
|
apt-get install zip -y
|
|
|
|
# create zip and tar.gz packages for release upload
|
|
zip -r castopod-host-$VERSION.zip castopod-host
|
|
tar -zcvf castopod-host-$VERSION.tar.gz castopod-host
|