Skip to content

Commit cc2e0d3

Browse files
build: fix cleanup of appimage: fix perms so rm -rf/git clean can work
copied this ` chmod -R 777 "${APP_DIR}"` from another place in the build appimage script: cleanup worked ok locally in the end(after this line), but not when paused early: so it seems it fixes the permissions and we can put it in cleanup without sudo Co-authored-by: Madman10K <[email protected]>
1 parent 3796547 commit cc2e0d3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

appimage-scripts/build_appimage.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ set -e
1212

1313
cleanup() {
1414
echo "Performing cleanup..."
15+
chmod -R 777 "${APP_DIR}"
1516
rm -rf ./squashfs-root
1617
}
1718

0 commit comments

Comments
 (0)