Use bash for the release/tag playbook

The tag playbook used for the tag-releases job attempts to export a
variable containing a path relative to the user's homedir. This
works fine for tilde expansion in bash, but in vanilla sh ends up
passing a literal tilde into the consuming scripts at least some of
which do not perform their own os.path.expanduser() on the string.
Go ahead and explicitly use bash for the shell task in this playbook
to get the advance expansion it seems to assume.

Change-Id: Id10e37e5a2a32b7051c986f0541b1ed9f326e95c
This commit is contained in:
Jeremy Stanley
2017-10-23 23:39:27 +00:00
parent 65d9f0a95d
commit 39ddeb5144
+2
View File
@@ -20,3 +20,5 @@
RC2=$?
exit $(($RC1 + $RC2))
args:
executable: /bin/bash