diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-02-04 01:29:01 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-02-03 23:01:07 -0800 |
commit | 840c519d7e7ae4651a7b5a0954f7aa53eebc29b6 (patch) | |
tree | dac8be1023f6930cb6166d43d6fa5626a6314d41 /t/t9139-git-svn-non-utf8-commitencoding.sh | |
parent | Git 1.7.9 (diff) | |
download | tgif-840c519d7e7ae4651a7b5a0954f7aa53eebc29b6.tar.xz |
tests: add write_script helper function
Many of the scripts in the test suite write small helper
shell scripts to disk. It's best if these shell scripts
start with "#!$SHELL_PATH" rather than "#!/bin/sh", because
/bin/sh on some platforms is too buggy to be used.
However, it can be cumbersome to expand $SHELL_PATH, because
the usual recipe for writing a script is:
cat >foo.sh <<-\EOF
#!/bin/sh
echo my arguments are "$@"
EOF
To expand $SHELL_PATH, you have to either interpolate the
here-doc (which would require quoting "\$@"), or split the
creation into two commands (interpolating the $SHELL_PATH
line, but not the rest of the script). Let's provide a
helper function that makes that less syntactically painful.
While we're at it, this helper can also take care of the
"chmod +x" that typically comes after the creation of such a
script, saving the caller a line.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9139-git-svn-non-utf8-commitencoding.sh')
0 files changed, 0 insertions, 0 deletions