You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In relint-pre-commit.sh the ${@:1} lacks quotes, i.e. it should be "${@:1}" to support arguments with spaces. Let me demo the difference to you:
$ demo_bad() { echo${@:1}; }
$ demo_good() { echo"${@:1}"; }
$ demo_bad "one two""three four"one two three four
$ demo_good "one two""three four"one two three four