mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
8 lines
191 B
Bash
8 lines
191 B
Bash
#!/bin/bash
|
|
|
|
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
|