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=(
1 "test" off
2 "release" off
3 "build" off
)
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
exitStatus=$?
@@ -250,6 +251,10 @@ main() {
2)
release_flow
break;;
3)
cargo_build
main
break;;
esac
done
}