Skip to content

Commit a17583a

Browse files
committed
Remove redundant bash verification on Windows
The PowerShell script already verifies Quarto is available with Get-Command. The bash check was redundant and failing because GITHUB_PATH updates only take effect in subsequent steps, not within the same step where the PATH is modified.
1 parent 5f21211 commit a17583a

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

setup/action.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,6 @@ runs:
9999
exit 1
100100
fi
101101
102-
# Verify Quarto is available
103-
if ! command -v quarto &> /dev/null; then
104-
echo "ERROR: Quarto installation completed but quarto command not found"
105-
exit 1
106-
fi
107-
108102
echo "Quarto Installed !"
109103
;;
110104
*)

0 commit comments

Comments
 (0)