scripts: dos.sh now runs with or without args

This commit is contained in:
Valerie Wolfe 2024-06-25 09:50:42 -04:00
parent 9738b9a0e9
commit 7262fe4a17

View file

@ -1,4 +1,8 @@
#!/usr/bin/bash
pwsh -C "$@"
if [ "$#" -eq 0 ]; then
pwsh
else
pwsh -C "$@"
fi