We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c7c017 commit ab52b01Copy full SHA for ab52b01
tools/extras/check_dependencies.sh
@@ -80,7 +80,7 @@ if which apt-get >&/dev/null && ! which zypper >/dev/null; then
80
fi
81
# Debian systems generally link /bin/sh to dash, which doesn't work
82
# with some scripts as it doesn't expand x.{1,2}.y to x.1.y x.2.y
83
- if [ $(readlink /bin/sh) == "dash" ]; then
+ if [ "$(readlink /bin/sh)" == "dash" ]; then
84
echo "/bin/sh is linked to dash, and currently some of the scripts will not run"
85
echo "properly. We recommend to run:"
86
echo " sudo ln -s -f bash /bin/sh"
0 commit comments