mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
dbginfo.sh: fix shellcheck errors in double quoting
change use of double quote to fit the rules Reviewed-by: Mario Held <mario.held@de.ibm.com> Signed-off-by: Joern Siglen <siglen@de.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
This commit is contained in:
committed by
Jan Höppner
parent
ecf36d53c8
commit
488ac8c3f2
@@ -1395,7 +1395,7 @@ pr_log_stdout() {
|
||||
pr_syslog_stdout() {
|
||||
echo "$@" >&8
|
||||
echo
|
||||
echo "$(date +%H:%M:%S.%N) - $@"
|
||||
echo "$(date +%H:%M:%S.%N) - " "$@"
|
||||
logger -t "${SCRIPTNAME}" "$@"
|
||||
}
|
||||
|
||||
@@ -1408,13 +1408,13 @@ pr_collect_output() {
|
||||
########################################
|
||||
# print "Collecting ..." like fs
|
||||
pr_collect() {
|
||||
pr_syslog_stdout ${step_num} "Collecting" $@
|
||||
pr_syslog_stdout ${step_num} "Collecting" "$@"
|
||||
}
|
||||
|
||||
########################################
|
||||
# print "Skipping ..." info with reason
|
||||
pr_skip() {
|
||||
pr_syslog_stdout ${step_num} "Skip" $@
|
||||
pr_syslog_stdout ${step_num} "Skip" "$@"
|
||||
}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Reference in New Issue
Block a user