mirror of
https://github.com/avatao-content/test-tutorial-framework
synced 2024-11-12 19:37:16 +00:00
Fix TFWDEV=0 workflow
This commit is contained in:
parent
cdbae9f39e
commit
f37e07d955
@ -22,7 +22,7 @@ baseimage::build() {
|
||||
}
|
||||
|
||||
baseimage::build_if_exists() {
|
||||
[[ -d "$BASEIMAGE_PATH" ]] && baseimage::build_as_latest
|
||||
[[ -d "$BASEIMAGE_PATH" ]] && baseimage::build_as_latest || :
|
||||
}
|
||||
|
||||
baseimage::tag_as_latest() {
|
||||
|
@ -60,10 +60,10 @@ case ${1:-} in
|
||||
challenge::build_with_frontend
|
||||
;;
|
||||
releasetfw)
|
||||
[[ -d "$BASEIMAGE_PATH" ]] && baseimage::release
|
||||
[[ -d "$BASEIMAGE_PATH" ]] && baseimage::release || :
|
||||
;;
|
||||
builddocs)
|
||||
[[ -d "$BASEIMAGE_PATH" ]] && baseimage::builddocs
|
||||
[[ -d "$BASEIMAGE_PATH" ]] && baseimage::builddocs || :
|
||||
;;
|
||||
*)
|
||||
echo "Usage: tfw.sh [COMMAND]"
|
||||
|
Loading…
Reference in New Issue
Block a user