Template tasks cannot handle % as part of a shell script
e.g. when the template is a shell script like
#!/usr/bin/env bash
echo "$(date '+%Y%m%d%H%M%S')"
echo %s
it will break as the date related % signs cause trouble.
Edited by scflode
e.g. when the template is a shell script like
#!/usr/bin/env bash
echo "$(date '+%Y%m%d%H%M%S')"
echo %s
it will break as the date related % signs cause trouble.