File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 27
27
28
28
- name : Install Qt
29
29
run : |
30
- python3 -m aqt install-qt linux desktop $QT_VERSION linux_gcc_64 -O /tmp/qt -m $QT_MODULES
31
- python3 -m aqt install-qt linux_arm64 desktop $QT_VERSION linux_gcc_arm64 -O /tmp/qt -m $QT_MODULES
30
+ python3 -m aqt install-qt linux desktop $QT_VERSION linux_gcc_64 -O /tmp/qt
31
+ python3 -m aqt install-qt linux_arm64 desktop $QT_VERSION linux_gcc_arm64 -O /tmp/qt
32
32
33
33
- name : Build for amd64
34
34
run : |
Original file line number Diff line number Diff line change @@ -398,7 +398,10 @@ int main(int argc, char* argv[])
398
398
if (appRun.exists ()) {
399
399
qDebug () << " Keeping existing AppRun" ;
400
400
} else {
401
- if (!QFile::copy (" :/assets/AppRun" , appDirPath + " /AppRun" )) {
401
+ if (QFile::copy (" :/assets/AppRun" , appDirPath + " /AppRun" )) {
402
+ if (!QFile::setPermissions (appDirPath + " /AppRun" , QFile::ExeUser))
403
+ LogError () << " Could not set permissions on AppRun" ;
404
+ } else {
402
405
LogError () << " Could not copy AppRun" ;
403
406
}
404
407
}
You can’t perform that action at this time.
0 commit comments