Browse Source

corrected comments

master
Jeffrey Adamson Stefan Bodewig 8 years ago
parent
commit
2dfcbe3493
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/script/ant

+ 2
- 2
src/script/ant View File

@@ -50,13 +50,13 @@ for arg in "$@" ; do

# wrap all arguments as "" strings, escape any internal back-slash, double-quote, $, or back-tick characters
# use printf to avoid echo interpretation behaviors such as escapes and line continuation
# pad the value with leading/trailing X to protect whitespace
# pad the value with X to protect leading/trailing whitespace from subshell output trimming
esc_arg="X${arg}X"
case "$esc_tool" in
'sed')
# Mac bsd_sed does not support group-0, so pattern uses group-1
# Solaris sed only proceses lines with trailing newline, passing in an extra newline
# sed will consume the trailing newline
# subshell assignment will trim the added trailing newline
esc_arg="$(printf '%s\n' "$esc_arg" | sed -e 's@\([$"\\`]\)@\\\1@g')"
;;
'awk')


Loading…
Cancel
Save