Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Tests on Windows: $(pwd) must return Windows-style paths
[gitweb.git]
/
t
/
test-lib.sh
diff --git
a/t/test-lib.sh
b/t/test-lib.sh
index 4720b9a92b560ede0bf7171d6f9eb6827e19bdcf..0a0696abc930a8142bb6780fc7fbc47c84cc4e32 100644
(file)
--- a/
t/test-lib.sh
+++ b/
t/test-lib.sh
@@
-649,5
+649,9
@@
case $(uname -s) in
sum () {
md5sum "$@"
}
+ # git sees Windows-style pwd
+ pwd () {
+ builtin pwd -W
+ }
;;
esac