=====================================================================

--- New Features -------------------------

- --list-envs now shows all available environments
This commit is contained in:
2023-11-13 16:19:05 -07:00
parent 6cc10e3f4f
commit a03885e8db
2 changed files with 11 additions and 1 deletions

7
run
View File

@ -17,7 +17,8 @@ __RUN() {
-e, --env <env-name> set environment; overwrites SCWRYPTS_ENV
-n, --no-log skip logging and run in quiet mode
--update update scwrypts library to latest version
--update update scwrypts library to latest version
--list-envs print out environment list and exit
-v, --version print out scwrypts version and exit
-l, --list print out command list and exit
@ -78,6 +79,10 @@ __RUN() {
SCWRYPTS__GET_AVAILABLE_SCWRYPTS
return 0
;;
--list-envs )
SCWRYPTS__GET_ENV_NAMES
return 0
;;
-v | --version )
echo scwrypts $(cd "$SCWRYPTS__ROOT__scwrypts"; git describe --tags)
return 0