Skip to content
Snippets Groups Projects
Commit 6f314a35 authored by Eliott Sammier's avatar Eliott Sammier
Browse files

Change default version to "full" + help command

parent dc818218
No related branches found
No related tags found
2 merge requests!4Main,!1Main
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Default value for version env var # Default value for version env var
if [[ -z "$VERSION" ]]; then if [[ -z "$VERSION" ]]; then
VERSION="each" VERSION="full"
fi fi
# First parameter overrides version if set # First parameter overrides version if set
if [[ "$1" == "12" || "$1" == "3" ]]; then if [[ "$1" == "12" || "$1" == "3" ]]; then
...@@ -304,8 +304,12 @@ status) ...@@ -304,8 +304,12 @@ status)
echo "" echo ""
cd "$MACAO_ROOT" && git status cd "$MACAO_ROOT" && git status
;; ;;
help)
print_usage
;;
*) *)
echo "Unknown command '$action'" echo "Unknown command '$action'"
print_usage print_usage
exit 1
;; ;;
esac esac
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment