Skip to content

Commit

Permalink
build: fix a typo in if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
barraIhsan committed Oct 5, 2024
1 parent 35e2a67 commit 3463774
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/astro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Detect package manager
id: detect-package-manager
run: |
if [ -f "${{ github.workspace }}/pnpm-lock.yaml"]; then
if [ -f "${{ github.workspace }}/pnpm-lock.yaml" ]; then
echo "manager=pnpm" >> $GITHUB_OUTPUT
echo "command=install" >> $GITHUB_OUTPUT
echo "runner=pnpm" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 3463774

Please sign in to comment.