From: Antonio Ospite Date: Mon, 17 Dec 2018 09:32:23 +0000 (+0100) Subject: Fix shellcheck warnings X-Git-Url: https://git.ao2.it/config/vcsh.git/commitdiff_plain/2ec706e30dfff503a575df0c8d5d5986d263c4bd?hp=2ec706e30dfff503a575df0c8d5d5986d263c4bd Fix shellcheck warnings Fix the following warnings from shellcheck: ----------------------------------------------------------------------- In populate-fully.sh line 18: if kill -0 $(cat "$LOCKDIR/pid") 2>/dev/null; ^-- SC2046: Quote this to prevent word splitting. In populate-sparsely.sh line 18: . "$XDG_CONFIG_HOME/vcsh/hooks-available/sparse-checkout.sh" ^-- SC1090: Can't follow non-constant source. Use a directive to specify location. ----------------------------------------------------------------------- ---