Skip to content

Commit 9a7cb51

Browse files
committed
fix: fix wrong wxWidgets extract path in yaml
1 parent 393728d commit 9a7cb51

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build-linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ jobs:
7373
if: steps.cache-wxwidgets.outputs.cache-hit != 'true'
7474
run: |
7575
wget https://github.com/wxWidgets/wxWidgets/releases/download/v${{ env.WXWIDGETS_VERSION }}/wxWidgets-${{ env.WXWIDGETS_VERSION }}.tar.bz2 -O /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }}.tar.bz2
76-
tar -xjf /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }}.tar.bz2 -C /tmp --strip-components=1
76+
mkdir -p /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }}
77+
tar -xjf /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }}.tar.bz2 -C /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }} --strip-components=1
7778
7879
- name: Build VeraCrypt .deb packages
7980
run: |

0 commit comments

Comments
 (0)