]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/test-lib-functions.sh
mingw: make test_path_is_hidden more robust
[thirdparty/git.git] / t / test-lib-functions.sh
index 7a7e7a38312e888566bf81013540312fe2f2878d..2f81463a2409cc35dfcf28b679b62fe094a8dff3 100644 (file)
@@ -1547,6 +1547,6 @@ test_bitmap_traversal () {
 # Tests for the hidden file attribute on windows
 is_hidden () {
        # Use the output of `attrib`, ignore the absolute path
-       case "$(attrib "$1")" in *H*?:*) return 0;; esac
+       case "$("$SYSTEMROOT"/system32/attrib "$1")" in *H*?:*) return 0;; esac
        return 1
 }