aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/vr.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sh/shrc.d/vr.sh')
-rw-r--r--sh/shrc.d/vr.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/sh/shrc.d/vr.sh b/sh/shrc.d/vr.sh
index c7057ec2..d9cfda62 100644
--- a/sh/shrc.d/vr.sh
+++ b/sh/shrc.d/vr.sh
@@ -59,5 +59,6 @@ vr() {
[ -n "$1" ] || return
# Try to change into the determined directory
- command cd -- "$@"
+ # shellcheck disable=SC2164
+ cd -- "$@"
}