mirror of
https://github.com/sigmasternchen/NurseBot
synced 2025-03-15 16:18:58 +00:00
20 lines
228 B
Bash
Executable file
20 lines
228 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DEPLOY_DIR=$1
|
|
VERSIONS=./versions
|
|
|
|
VERSION=$2
|
|
|
|
pushd $DEPLOY_DIR
|
|
|
|
file=$VERSIONS/NurseBot$VERSION.jar
|
|
|
|
if test ! -f $file; then
|
|
echo "Version not found."
|
|
exit 1
|
|
fi
|
|
|
|
unlink NurseBot.jar
|
|
ln $file NurseBot.jar
|
|
|
|
popd
|