diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml index 5546ab61..91288333 100644 --- a/.github/workflows/example.yml +++ b/.github/workflows/example.yml @@ -29,10 +29,10 @@ jobs: - name: Use Funnel binary run: | - if [ -f ./funnel/funnel ]; then + if [ -f ./funnel ]; then echo "Using cached Funnel binary" - chmod +x ./funnel/funnel - ./funnel/funnel server --LocalStorage.AllowedDirs $HOME run & + chmod +x ./funnel + ./funnel server --LocalStorage.AllowedDirs $HOME run & else echo "Funnel binary not found. Exiting." exit 1