From 8b23c2ee7b81c156ebb8ee2643d83007b68c80ec Mon Sep 17 00:00:00 2001 From: robojerk Date: Sun, 7 Sep 2025 17:03:04 -0700 Subject: [PATCH] Fix duplicate cd command causing directory not found error - Remove redundant 'cd fuse-3.10.0' command - Fix 'No such file or directory' error from run #11 - Build process now properly navigates to source directory once The workflow was trying to cd into fuse-3.10.0 twice, causing the second attempt to fail since we were already in that directory. --- .forgejo/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index f440c64..6b8dbae 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -95,7 +95,6 @@ jobs: cd fuse-3.10.0 # Build libfuse - cd fuse-3.10.0 mkdir build && cd build meson setup --prefix=/usr --libdir=lib/x86_64-linux-gnu .. ninja