Shellcheck

mainly just double quoting
This commit is contained in:
Tad 2018-06-23 00:21:48 -04:00
parent 9b156f7b66
commit 9c3996bed9
18 changed files with 245 additions and 243 deletions

View file

@ -30,11 +30,11 @@
echo "Patching CVEs...";
cd $base;
for patcher in $cveScripts/*.sh; do
echo "Running " $patcher;
source $patcher;
cd "$base";
for patcher in "$cveScripts"/*.sh; do
echo "Running $patcher";
source "$patcher";
done;
cd $base;
cd "$base";
echo "Patched CVEs!";