support single value scripts
job:
script: |
ls -l
date > foo.txt
tar -czvf foo.tar.gz foo.txt
The above is valid, it results in script
containing one string value rather than a lis
job:
script: |
ls -l
date > foo.txt
tar -czvf foo.tar.gz foo.txt
The above is valid, it results in script
containing one string value rather than a lis