From 99275082ebb9f0ee9f98ad3f8d7134725d467cde Mon Sep 17 00:00:00 2001 From: Andrew Turley Date: Mon, 27 Jul 2020 16:58:00 -0500 Subject: [PATCH] Use `bash` instead of `sh` in ansible generate_inventory.sh 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. --- orchestration/pulumi/generate_inventory.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchestration/pulumi/generate_inventory.sh b/orchestration/pulumi/generate_inventory.sh index 5867e6ce4e..8fae5472d9 100755 --- a/orchestration/pulumi/generate_inventory.sh +++ b/orchestration/pulumi/generate_inventory.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash #set -x vmss_name=$1 resource_group_name=$2