Skip to content

Commit 0b7a146

Browse files
committed
ui-tests: fix the uname -a invocation
The `uname` executable is not on the `PATH` by default. Let's use the Git alias trick to execute it, then. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent bef2469 commit 0b7a146

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui-tests/ui-test-library.ahk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ SetWorkTree(defaultName) {
2020
}
2121

2222
SetWorkingDir(EnvGet('TEMP'))
23-
Info 'uname: ' RunWaitOne('uname -a')
23+
Info 'uname: ' RunWaitOne('git -c alias.uname="!uname" uname -a')
2424
Info RunWaitOne('git version --build-options')
2525

2626
RunWait('git init "' workTree '"', '', 'Hide')

0 commit comments

Comments
 (0)