Skip to content

Commit 36da385

Browse files
committed
CI: fixup tr command
1 parent 790a8d7 commit 36da385

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ test *FILES:
2323
#!/usr/bin/env bash
2424
# In windows github actions, the uname command returns "MSYS_NT-10.0-20348"
2525
# Search for "MSYS_NT"
26-
if [ "$(uname | tr '[:upper:] [:lower:]' | grep 'msys_nt')" ]; then
26+
if [ "$(uname | tr '[:upper:]' '[:lower:]' | grep 'msys_nt')" ]; then
2727
uv run --group test --all-extras pytest {{FILES}}
2828
else
2929
uv run --group test --all-extras pytest --doctest-modules {{FILES}}

0 commit comments

Comments
 (0)