From ce08cc351170dbfd54343717f65968ad075d7478 Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Wed, 23 Oct 2024 16:58:11 -0700 Subject: [PATCH] install fuse3 not fuse2 on linux Signed-off-by: Brian L. Troutwine --- .github/actions/install-fuse/action.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/actions/install-fuse/action.yml b/.github/actions/install-fuse/action.yml index 5e12d81fae..986e6eee7a 100644 --- a/.github/actions/install-fuse/action.yml +++ b/.github/actions/install-fuse/action.yml @@ -5,11 +5,7 @@ runs: steps: - run: | if [ "${{ runner.os }}" == "Linux" ]; then -<<<<<<< HEAD sudo apt-get update && sudo apt-get install -y fuse3 libfuse3-dev -======= - sudo apt-get update && sudo apt-get install -y fuse ->>>>>>> f07473c (install FUSE dependency) elif [ "${{ runner.os }}" == "macOS" ]; then brew install macfuse fi