devshell: Allow deploy-multi without options
CI / Check, build and cache nixfiles (push) Has been cancelled

This commit is contained in:
2026-06-13 22:11:23 +01:00
parent 023b3f6605
commit f3a0ca3f57
+5 -1
View File
@@ -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
'';
}