File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,9 @@ cp /scratch/xpra-xorg.conf /etc/X11/xorg.conf || true
164164# This function either freshly clones a git repository, or pulls from upstream remotes.
165165# The return value can be used to determine whether recompilation is required.
166166function clone_or_pull {
167+ find ./ -type d -exec chmod -R 755 ' {}' \+
168+ find ./ -type f -exec chmod 644 ' {}' \+
169+
167170 if git clone " $@ " . ; then
168171 return 0 # Requires compilation.
169172 fi
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ elif [ "$ARCH" == "aarch64" ] || [ "$ARCH" == "armhf" ] ; then
119119 # wget "https://github.com/AppImage/AppImageKit/releases/download/13/AppRun-${ARCH}" -O ./AppDir/AppRun
120120 wget " https://github.com/AppImage/AppImageKit/releases/download/13/obsolete-AppRun-${ARCH} " -O ./AppDir/AppRun
121121 find ./AppDir -type d -exec chmod -R 755 ' {}' \+
122- find ./AppDir -type f -exec chmod -R 644 ' {}' \+
122+ find ./AppDir -type f -exec chmod 644 ' {}' \+
123123
124124 # Bundle required libraries, but exclude libraries known to be problematic.
125125 # wget 'https://raw.githubusercontent.com/AppImage/pkg2appimage/master/excludelist' -O - |
You can’t perform that action at this time.
0 commit comments