diff --git a/.local/bin/aws-config-refresh b/.local/bin/aws-config-refresh index 424a1d8..1fa926a 100755 --- a/.local/bin/aws-config-refresh +++ b/.local/bin/aws-config-refresh @@ -1,7 +1,12 @@ -#!/usr/bin/env make -f - +#!/usr/bin/env bash +# This should have been a make script. But apperantly the linux shebang is +# defeated by commands with more than 1 argument (#!/usr/bin/env make -f). +# ^^ +# Soo... +make -f - < $@ # aws-config-gen -r eu-central-1 --suffix -🍺 --default-role admin $< >> $@ # aws-config-gen -r eu-west-1 --suffix -🍀 --default-role admin $< >> $@ # aws-config-gen -r us-east-1 --suffix -🍔 --default-role admin $< >> $@ +EOF