jq icon indicating copy to clipboard operation
jq copied to clipboard

~/.jq is not sourced on windows

Open kirkoman opened this issue 1 year ago • 0 comments

On Windows, ~/.jq when it is present as a file should be sourced automatically, but it is not.

To be clear, $HOME/.jq is sourced, however HOME is not a standard environment variable on Windows, you must set it manually. The corresponding environment variable on Windows is USERPROFILE.

To Reproduce

# ~/.jq:
def a:
  "a";
C:\Users\me>jq -n "a"
jq: error: a/0 is not defined at <top-level>, line 1:
a
jq: 1 compile error

C:\Users\me>set HOME=%USERPROFILE%

C:\Users\me>jq -n "a"
"a"

Environment

  • Windows 11
  • jq 1.7.1

kirkoman avatar May 01 '24 02:05 kirkoman