Using """x""" is identical to "x"

This commit is contained in:
Tyler Akins
2015-06-12 13:27:42 -05:00
parent 01e681035d
commit db9b2eef60
5 changed files with 21 additions and 21 deletions

View File

@@ -11,13 +11,13 @@
function debugmsg() {
# Log to stderr.
echo 1>&2 LOG: """$@"""
echo 1>&2 LOG: "$@"
:
}
function logit() {
# Log to stderr.
echo 1>&2 LOG: """$@"""
echo 1>&2 LOG: "$@"
}
function fail_out() {