Skip to content

Commit

Permalink
Use bash instead of sh in ansible generate_inventory.sh
Browse files Browse the repository at this point in the history
The script uses Bash features. It was using `/bin/sh`, as the
interpreter, which works on systems like Mac OS that use `/bin/bash`
when you call for `/bin/sh`, but fails on systems that do not do this.

This change will make the script work correctly on all systems.
  • Loading branch information
aturley committed Jul 27, 2020
1 parent b461ba1 commit 9927508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orchestration/pulumi/generate_inventory.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#set -x
vmss_name=$1
resource_group_name=$2
Expand Down

0 comments on commit 9927508

Please sign in to comment.