mirror of
https://github.com/wekan/wekan.git
synced 2025-04-21 12:37:07 -04:00
14 lines
382 B
Bash
Executable file
14 lines
382 B
Bash
Executable file
## 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-amd64.zip /home/wekan/rel$1/wekan-$1-amd64.zip
|