diff --git a/abra b/abra index 248bfc6..8bf07f6 100755 --- a/abra +++ b/abra @@ -378,12 +378,12 @@ get_app_secrets() { get_app_passwords() { # FIXME 3wc: requires bash 4, use for loop instead - mapfile -t PASSWORDS < <(grep "SECRET.*PASSWORD.*VERSION.*" "$ENV_FILE" | cut -d ' ' -f2-) + mapfile -t PASSWORDS < <(grep "SECRET.*PASSWORD.*VERSION.*" "$ENV_FILE") } get_app_keys() { # FIXME 3wc: requires bash 4, use for loop instead - mapfile -t KEYS < <(grep "SECRET.*KEY.*VERSION.*" "$ENV_FILE" | cut -d' ' -f2-) + mapfile -t KEYS < <(grep "SECRET.*KEY.*VERSION.*" "$ENV_FILE") } load_instance() {