7 lines
115 B
Bash
7 lines
115 B
Bash
|
#!/bin/sh
|
||
|
if test "x$1" = "xpull"; then
|
||
|
"@GIT@" "$@" && sleep 1 && touch foo.txt
|
||
|
else
|
||
|
exec "@GIT@" "$@"
|
||
|
fi
|