https://github.com/Kitware/CMake
Raw File
Tip revision: 9f5c2040bfd41a2c87624cec3d9504cf477c9fc3 authored by Brad King on 12 July 2019, 16:55:55 UTC
AIX: Explicitly compute executable exports for both XL and GNU
Tip revision: 9f5c204
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