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