From 2f401f4bc835d1f5ec856d9d55e68b74ca51eebb Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Fri, 10 Jan 2020 20:37:44 +0100 Subject: helper scripts: optimize argument shifts --- apply-role.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'apply-role.sh') diff --git a/apply-role.sh b/apply-role.sh index 708a8357..0a513b1d 100755 --- a/apply-role.sh +++ b/apply-role.sh @@ -5,9 +5,8 @@ if [ -z "$1" ] || [ -z "$2" ]; then exit 1 fi hosts="$1" -shift -role="$1" -shift +role="$2" +shift 2 cd "${BASH_SOURCE%/*}" source common/utils.sh -- cgit v1.2.3