From 11fb32dec81eeda8aeea2c79afce2eab2ff0869f Mon Sep 17 00:00:00 2001 From: cancel Date: Mon, 11 Feb 2019 09:55:19 +0900 Subject: [PATCH] Fix shellcheck SC1117 Harmless in this case, but annoying to see. --- tool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool b/tool index c7261b7..f34df70 100755 --- a/tool +++ b/tool @@ -334,7 +334,7 @@ build_target() { add libraries -lportmidi add cc_flags -DFEAT_PORTMIDI if [[ $1 = debug ]]; then - echo -e "Warning: The PortMIDI library contains bugs.\nIt may trigger address sanitizer in debug builds.\nThese are not bugs in orca." >&2 + echo -e "Warning: The PortMIDI library contains bugs.\\nIt may trigger address sanitizer in debug builds.\\nThese are not bugs in orca." >&2 fi fi ;;