We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2bdb53 commit 49ad7cbCopy full SHA for 49ad7cb
prepare-release.sh
@@ -18,11 +18,13 @@ if [ -z "$RELEASE_VERSION" ]; then
18
else
19
echo "Setting version to '$RELEASE_VERSION'";
20
fi
21
-if [ -z "$DEVELOPMENT_VERSION" ]; then
22
- echo "ERROR: Development version argument not supplied"
23
- exit 1
24
-else
25
- echo "Setting development version to '$DEVELOPMENT_VERSION'";
+if [ "$PROJECT" == "orm" ]; then
+ if [ -z "$DEVELOPMENT_VERSION" ]; then
+ echo "ERROR: Development version argument not supplied"
+ exit 1
+ else
26
+ echo "Setting development version to '$DEVELOPMENT_VERSION'";
27
+ fi
28
29
30
if [ -z "$BRANCH" ]; then
0 commit comments