ligo/parser/pascaligo/check_dot_git_is_dir.sh

11 lines
143 B
Bash
Raw Normal View History

2019-05-13 00:56:22 +04:00
#!/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