mirror of
https://github.com/wekan/wekan.git
synced 2026-01-06 01:28:49 +01:00
15 lines
376 B
Bash
15 lines
376 B
Bash
|
|
## After building bundles, copy and rename for uploading to releases
|
||
|
|
|
||
|
|
if [ $# -ne 1 ]
|
||
|
|
then
|
||
|
|
echo "Syntax with Wekan version number:"
|
||
|
|
echo " ./rel.sh 6.61"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
|
||
|
|
mkdir ~/rel$1
|
||
|
|
mv ~/repos/wekan/wekan-$1*.zip /home/wekan/rel$1/
|
||
|
|
mv ~/Julkinen/wekan-$1*.zip /home/wekan/rel$1/
|
||
|
|
mv /home/wekan/repos/wekan/.build/wekan-$1.zip /home/wekan/rel$1/wekan-$1-amd64.zip
|