Skip to content

Commit

Permalink
Fix vale on Windows (#810)
Browse files Browse the repository at this point in the history
Should have caught this pre-last release. We need to forward the PATH so
that we can access necessary shared libraries.
  • Loading branch information
TylerJang27 authored Jun 19, 2024
1 parent 51d9f3f commit 1b6a671
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion linters/vale/plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ tools:
known_good_version: 3.4.1
environment:
- name: PATH
list: ["${tool}"]
# Needs access to shared libraries on Windows.
list: ["${tool}", "${env.PATH}"]

lint:
definitions:
Expand Down

0 comments on commit 1b6a671

Please sign in to comment.