1
0
Fork 0
mirror of https://github.com/dawidd6/action-ansible-playbook.git synced 2024-11-22 15:32:18 +00:00

main: use awk to trim whitespace

This commit is contained in:
Dawid Dziurla 2020-04-07 00:57:21 +02:00 committed by GitHub
parent 2be8c5b7f9
commit 55d6336eea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ if test -n "$directory"; then
fi
if test -n "$options"; then
options="$(echo "$options" | tr '\n' ' ' | xargs)"
options="$(echo "$options" | tr '\n' ' ' | awk '{$1=$1};1')"
fi
if test -n "$inventory"; then