From f3a0ca3f5769dc3645918561a553d517405a22e5 Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Sat, 13 Jun 2026 22:11:23 +0100 Subject: [PATCH] devshell: Allow deploy-multi without options --- devshell/commands.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/devshell/commands.nix b/devshell/commands.nix index b708660..71efa71 100644 --- a/devshell/commands.nix +++ b/devshell/commands.nix @@ -144,7 +144,11 @@ in help = "Deploy multiple flakes at once"; command = '' for f in $@; do - deploy "$O" $f + if [ -n "''${O:-}" ]; then + deploy "$O" $f + else + deploy $f + fi done ''; }