git-sync/slow_git.sh

10 lines
84 B
Bash
Executable File

#!/bin/sh
if [ "$1" != "clone" ]; then
git "$@"
exit $?
fi
sleep 1.1
git "$@"