Skip to content

Commit 657cc08

Browse files
authored
Merge pull request #490 from asymmetric/patch-1
fix arguments check in deploy.sh
2 parents a5982ad + 23fc806 commit 657cc08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

terraform/nixos-rebuild/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -uex -o pipefail
44

5-
if [ "$#" -ne 5 ]; then
5+
if [ "$#" -ne 6 ]; then
66
echo "USAGE: $0 NIXOS_SYSTEM TARGET_USER TARGET_HOST TARGET_PORT IGNORE_SYSTEMD_ERRORS INSTALL_BOOTLOADER" >&2
77
exit 1
88
fi

0 commit comments

Comments
 (0)