From 21da83518fede47a90dbf2eef15dbe08a12233e4 Mon Sep 17 00:00:00 2001 From: Lazarus Lazaridis Date: Thu, 8 Mar 2018 16:10:37 +0200 Subject: [PATCH] Fix shellcheck warning. Comply with https://github.com/koalaman/shellcheck/wiki/SC1117 --- goto.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/goto.bash b/goto.bash index ed20fda..b31ee73 100644 --- a/goto.bash +++ b/goto.bash @@ -198,7 +198,7 @@ function _goto_find_alias_directory() { local resolved - resolved=$(sed -n "s/^$1 \(.*\)/\1/p" ~/.goto 2>/dev/null) + resolved=$(sed -n "s/^$1 \\(.*\\)/\\1/p" ~/.goto 2>/dev/null) echo "$resolved" }