mirror of https://github.com/v2ray/v2ray-core
exit when project is not specified
parent
d476258e44
commit
064155da13
|
@ -8,6 +8,11 @@ if [ -z "$PRE" ]; then
|
|||
PRE="true"
|
||||
fi
|
||||
|
||||
if [ -z "$PROJECT" ]; then
|
||||
echo "Project not specified. Exiting..."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo Creating a new release: $VER: $MSG
|
||||
|
||||
IFS="." read -a PARTS <<< "$VER"
|
||||
|
|
Loading…
Reference in New Issue