fix: create_release.sh build option

This commit is contained in:
Jack Wills
2022-09-07 18:01:15 +00:00
parent 86bfe8894c
commit 81bc6cca1f
+5
View File
@@ -230,6 +230,7 @@ main() {
options=( options=(
1 "test" off 1 "test" off
2 "release" off 2 "release" off
3 "build" off
) )
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty) choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
exitStatus=$? exitStatus=$?
@@ -250,6 +251,10 @@ main() {
2) 2)
release_flow release_flow
break;; break;;
3)
cargo_build
main
break;;
esac esac
done done
} }