mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-02 14:29:11 +02:00
7 lines
191 B
Bash
7 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
|