https://github.com/Kitware/CMake
Revision 83dbef11352c0075bf0c6c504f0094457b352051 authored by Brad King on 11 October 2019, 16:08:27 UTC, committed by Brad King on 11 October 2019, 16:08:27 UTC
2 parent s 881bca2 + ecbf654
Raw File
Tip revision: 83dbef11352c0075bf0c6c504f0094457b352051 authored by Brad King on 11 October 2019, 16:08:27 UTC
Merge branch 'InstallRequiredSystemLibraries-redist' into release-3.15
Tip revision: 83dbef1
CTestUpdateGIT.sh.in
#!/bin/sh
if test "x$1" = "xpull" -o "x$1" = "xreset"; then
    "@GIT@" "$@" && sleep 1 && touch foo.txt
else
    exec "@GIT@" "$@"
fi
back to top