diff --git a/bin/yolo b/bin/yolo index f4fe95a..f960570 100755 --- a/bin/yolo +++ b/bin/yolo @@ -18,6 +18,7 @@ OPTIONS: Requires nvidia-container-toolkit on host --no-config Ignore project configuration file --install-config Create/display .git/yolo/config template + --oopsie Print "fail!" and exit Additional podman options can be passed before -- @@ -199,6 +200,10 @@ while [ $# -gt 0 ]; do --install-config) install_config ;; + --oopsie) + echo "fail!" + exit 0 + ;; --entrypoint) ENTRYPOINT="$2" shift 2