VeraCrypt
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2024-07-06 11:44:59 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2024-07-06 11:44:59 +0200
commit9a7cb51484492341ff288d2002b7ef9b9e82c035 (patch)
treeb9d87304ccc650e8be67f7978480f08224e86daf
parent393728d4d978fd0f3dc14a920886191e5ff95c05 (diff)
downloadVeraCrypt-9a7cb51484492341ff288d2002b7ef9b9e82c035.tar.gz
VeraCrypt-9a7cb51484492341ff288d2002b7ef9b9e82c035.zip
fix: fix wrong wxWidgets extract path in yaml
-rw-r--r--.github/workflows/build-linux.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml
index 39b8ce65..254f7a48 100644
--- a/.github/workflows/build-linux.yml
+++ b/.github/workflows/build-linux.yml
@@ -73,7 +73,8 @@ jobs:
if: steps.cache-wxwidgets.outputs.cache-hit != 'true'
run: |
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
- tar -xjf /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }}.tar.bz2 -C /tmp --strip-components=1
+ mkdir -p /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }}
+ tar -xjf /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }}.tar.bz2 -C /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }} --strip-components=1
- name: Build VeraCrypt .deb packages
run: |