Fix Docker script path: use relative path since working directory is /workspace
Some checks failed
Build libfuse / Build and Test (push) Failing after 33s
Some checks failed
Build libfuse / Build and Test (push) Failing after 33s
- Change from '/workspace/build_libfuse.sh' to 'build_libfuse.sh' - Since Docker working directory is /workspace, script is directly accessible - Fixes 'No such file or directory' error from run #6 The script exists in the mounted volume at /workspace/build_libfuse.sh but since working directory is /workspace, we can reference it directly.
This commit is contained in:
parent
689783e6e0
commit
2a4c04988b
1 changed files with 1 additions and 1 deletions
|
|
@ -156,7 +156,7 @@ jobs:
|
|||
-v /workspace/particle-os/libfuse:/workspace \
|
||||
-w /workspace \
|
||||
debian:trixie \
|
||||
bash /workspace/build_libfuse.sh
|
||||
bash build_libfuse.sh
|
||||
|
||||
- name: Prepare artifacts
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue