From bb2fd010b64043d0585b105b3ca3e291bbccb78b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gregor=20B=C3=BCckendorf?= Date: Mon, 20 May 2019 14:05:57 +0200 Subject: [PATCH] aws-config-refresh: fd2fab4 Apparently Linux --- .local/bin/aws-config-refresh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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