Skip to content

Commit 4541044

Browse files
authored
GHA CI: ensure AppRun hook folder exists
Upstream made some changes and it won't create the AppRun hook folder anymore, so we create it ourselves. Upstream PR: linuxdeploy/linuxdeploy-plugin-qt#206 PR #23474.
1 parent b819b9b commit 4541044

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci_ubuntu.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ jobs:
164164
run: |
165165
rm -f "${{ runner.workspace }}/Qt/${{ matrix.qt_version }}/gcc_64/plugins/sqldrivers/libqsqlmimer.so"
166166
./linuxdeploy-x86_64.AppImage --appdir qbittorrent --plugin qt
167-
rm qbittorrent/apprun-hooks/*
167+
mkdir -p qbittorrent/apprun-hooks
168+
rm -f qbittorrent/apprun-hooks/*
168169
cp .github/workflows/helper/appimage/export_vars.sh qbittorrent/apprun-hooks/export_vars.sh
169170
NO_APPSTREAM=1 \
170171
OUTPUT=upload/qbittorrent-CI_Ubuntu_x86_64.AppImage \

0 commit comments

Comments
 (0)