Revision 218bda9671b4a76d49dfe73966862322d845d01f authored by Craig Scott on 04 April 2020, 07:25:22 UTC, committed by Craig Scott on 04 April 2020, 08:59:26 UTC
1 parent 11998c6
Raw File
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