Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ fi
############
echo -e "\n***** Running fixPermissions.sh from the script repo. *****"
if [ -a "$installPath"/utils/fixPermissions.sh ]; then
bash "$installPath"/utils/fixPermissions.sh
bash $installPath"/utils/fixPermissions.sh $webPath
else
echo "ERROR: Could not find fixPermissions.sh!"
fi
Expand Down
2 changes: 1 addition & 1 deletion updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def checkForUpdates():
def runAfterUpdate(scriptDir):
try:
print "Installing dependencies, updating CRON and fixing file permissions..."
subprocess.check_call(["sudo", "bash", scriptDir + "/utils/runAfterUpdate.sh"], stderr=subprocess.STDOUT)
subprocess.check_call(["sudo", "bash", scriptDir + "/utils/runAfterUpdate.sh" + webPath], stderr=subprocess.STDOUT)
except subprocess.CalledProcessError:
print "I tried to execute the runAfterUpdate.sh bash script, but an error occurred. " + \
"Try running it from the command line in your <brewpi-script>/utils dir"
Expand Down