Skip to content

Commit 3b5b032

Browse files
committed
chore: some improvements to linux installation
1 parent 14c3488 commit 3b5b032

File tree

2 files changed

+1
-20
lines changed

2 files changed

+1
-20
lines changed

.github/workflows/dart.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -276,9 +276,6 @@ jobs:
276276
# Step 6: Build the Linux application
277277
- name: Build Flutter Linux app
278278
run: flutter build linux
279-
280-
281-
282279
# Step 7: Archive the app
283280
- name: Archive app
284281
uses: thedoctor0/zip-release@master
@@ -297,22 +294,6 @@ jobs:
297294
upload-to-folder-id: ${{secrets.GOOGLE_FOLDER_MAIN}}
298295
service-account-json: "${{secrets.GOOGLE_KEY}}"
299296
overrwrite: true
300-
# Store File ID in latest.txt
301-
- name: Store File ID
302-
env:
303-
FILE_ID: ${{steps.gdriveUpload.outputs.file-id}}
304-
305-
run: |
306-
echo "$FILE_ID" > scripts/latest.txt
307-
echo "$FILE_ID"
308-
309-
# Push updated latest.txt back to repository
310-
- name: Push updated latest.txt
311-
uses: EndBug/add-and-commit@v9
312-
with:
313-
add: "scripts/latest.txt"
314-
message: "[skip ci] Update latest.txt with new File ID"
315-
316297
build_ios:
317298
runs-on: macos-latest
318299
if: contains(github.event.head_commit.message, '[build.ios]') || contains(github.event.head_commit.message, '[build.all]')

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ check_dependencies() {
382382
if command -v pkg-config >/dev/null 2>&1; then
383383
# Check for WebKit2GTK with fallback to older version
384384
if ! pkg-config --exists webkit2gtk-4.1 2>/dev/null; then
385-
if ! pkg-config --exists webkit2gtk-4.1-0 2>/dev/null; then
385+
if ! pkg-config --exists libwebkit2gtk-4.1-0 2>/dev/null; then
386386
missing_deps+=("webkit2gtk")
387387
fi
388388
fi

0 commit comments

Comments
 (0)