ui-cookiecutter/hooks/post_gen_project.sh
Shu Muto 3ac73d21cb Exclude git operations from checkbuild in tox.
To test checkbuild in tox, git operations are unnecessary.
And this enables to run checkbuild in anywhere.

Change-Id: Ida41de8adba66096d3d5ede1d6a2f71af73fe142
2017-05-29 09:46:30 +00:00

7 lines
132 B
Bash
Executable File

#!/usr/bin/env sh
if ! [ ${IGNORE_GIT} ]; then
git init
git add .
git commit -a -m "Initial UI-Cookiecutter Commit."
fi