Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesTaylor7 committed Nov 12, 2023
1 parent 17c6134 commit 7d62714
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@ jobs:
- name: Install global NPM packages
run: npm i --global purescript@0.15.10 spago@next purs-tidy@latest esbuild@latest

- run: echo "$(npm prefix -g)" >> $GITHUB_PATH
- run: echo "$GITHUB_PATH"

- name: Cache PureScript dependencies
uses: actions/cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion src/Spago/Cmd.purs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ getExecutable command =
Right r -> pure { cmd: cmd1, output: r.stdout }
Left err' -> do
let cmd2 = mkCmd command Nothing
logDebug [ "Failed to find purs.cmd. Trying with just purs...", show err' ]
logDebug [ "Failed to find ", command, ".cmd. Trying with just purs...", show err' ]
askVersion cmd2 >>= case _ of
Right r -> pure { cmd: cmd2, output: r.stdout }
Left err -> complain err
Expand Down

0 comments on commit 7d62714

Please sign in to comment.