https://github.com/Kitware/CMake
Revision 1f3221f365f269f3356de0ad0112cf68e4831fe6 authored by Brad King on 08 June 2018, 13:42:29 UTC, committed by Brad King on 08 June 2018, 13:42:29 UTC
2 parent s c984bf6 + b6e7f2c
Raw File
Tip revision: 1f3221f365f269f3356de0ad0112cf68e4831fe6 authored by Brad King on 08 June 2018, 13:42:29 UTC
Merge branch 'FindPython-3.8' into release-3.12
Tip revision: 1f3221f
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