https://github.com/Kitware/CMake
Raw File
Tip revision: fbe6cd1596bf280edd49aeb8f981f99d7cd8beb3 authored by Brad King on 17 April 2018, 12:33:46 UTC
CMake 3.11.1
Tip revision: fbe6cd1
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