mirror of
https://github.com/ad-aures/castopod.git
synced 2026-03-31 21:39:20 +02:00
8 lines
164 B
Bash
8 lines
164 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
VERSION=$1
|
|
|
|
# create zip and tar.gz packages for release upload
|
|
zip -r castopod-$VERSION.zip castopod
|
|
tar -zcvf castopod-$VERSION.tar.gz castopod
|