We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b456a6d commit 408b441Copy full SHA for 408b441
t/t-clone.sh
@@ -59,13 +59,7 @@ begin_test "clone ClientCert with homedir certs"
59
# to the certificate file, and for Git LFS, one is associated with the
60
# path to the key file.
61
if [ "$IS_WINDOWS" -eq 1 ]; then
62
- cygpath -u "$HOME"
63
- cygpath -m "$HOME"
64
- cygpath -w "$HOME"
65
- cygpath -a -u "$HOME"
66
- cygpath -u "$(cygpath -m "$HOME")"
67
- cygpath -u "$(cygpath -w "$HOME")"
68
- homedir="$(cygpath -m "$HOME")"
+ homedir="$(cygpath -m "$HOME" | sed 's#^\([A-Z]\):#/\L\1#')"
69
else
70
homedir="$HOME"
71
fi
0 commit comments