Skip to content

Commit

Permalink
sudo needs a path in front of the tool to execute
Browse files Browse the repository at this point in the history
...even though the tool is actually in `$PATH` during the workflow
run.
  • Loading branch information
johnny-mnemonic committed Jun 25, 2024
1 parent b7c599f commit 1faa6dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/workflow.bash
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ echo "OK"

# perform builds
echo "I: performing build... "
sudo exec-in-chroot.bash "$T2_ROOT" "/perform-build.bash" || exit 1
sudo ${TOOLS_DIR}/exec-in-chroot.bash "$T2_ROOT" "/perform-build.bash" || exit 1
echo "OK"

exit

0 comments on commit 1faa6dd

Please sign in to comment.