updated update

This commit is contained in:
Snogard 2023-07-10 17:45:05 +02:00
parent 8d332a9101
commit 0434e920a2

View File

@ -93,7 +93,7 @@ echo ""
echo -e "Checking if installations need to be updated\n"
for val in $installList; do
name=${val:8}
if git diff --name-only $previusCommit $currentCommit scripts/install | grep -qi $name ; then
if git diff --name-only $previusCommit $currentCommit src/commands/install | grep -qi $name ; then
echo -e "Updating ${name} installation\n"
$installScript $name
fi