v_2-0_local-projects #1

Open
justin wants to merge 7 commits from v_2-0_local-projects into main
22 changed files with 574 additions and 214 deletions
Showing only changes of commit c90c6146cc - Show all commits

View File

@ -165,7 +165,7 @@ main() {
envs|ls|list) cmd_envs ;;
version|-v|--version) echo "safeclaude $SAFECLAUDE_VERSION" ;;
help|-h|--help) usage ;;
run) shift; cmd_run "$@" ;;
run) shift || true; cmd_run "$@" ;; # tolerate no args (bare `safeclaude`)
*) cmd_run "$@" ;; # default: all args go to claude
esac
}