diff --git a/check_dot_git_is_dir.sh b/check_dot_git_is_dir.sh new file mode 100755 index 000000000..7df363999 --- /dev/null +++ b/check_dot_git_is_dir.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +if test -d ../../.git; then + echo true > dot_git_is_dir +else + echo false > dot_git_is_dir + cat .git >> dot_git_is_dir +fi