From e998b88e04e03ea4374543a3c541dadd629774c0 Mon Sep 17 00:00:00 2001 From: Austin Macdonald Date: Tue, 7 Apr 2026 09:06:36 -0500 Subject: [PATCH] test spec --- bin/yolo | 5 +++++ 1 file changed, 5 insertions(+) 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