git_auto_update: update.sh: Fixed quoting of used variables

dehydrated
Felix Stupp 5 years ago
parent df5aba9aab
commit c31f3c2f50
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -1,11 +1,11 @@
#!/bin/bash
readonly REPO="{{ repo }}";
readonly DEST="{{ dest }}";
readonly DEST_USER="{{ owner }}";
readonly DEST_GROUP="{{ group }}";
readonly PREFIX="{{ tag_prefix }}";
readonly GPG_FINGERPRINT="{{ gpg_fingerprint }}";
readonly REPO={{ repo | quote }};
readonly DEST={{ dest | quote }};
readonly DEST_USER={{ owner | quote }};
readonly DEST_GROUP={{ group | quote }};
readonly PREFIX={{ tag_prefix | quote }};
readonly GPG_FINGERPRINT={{ gpg_fingerprint | quote }};
set -e;

Loading…
Cancel
Save