Skip to content
Snippets Groups Projects
post_gen_project.sh 200 B
Newer Older
#!/bin/bash -e

# Build a new repository for this project
if [[ ! -d .git ]] ; then
  git init .
  git add .
  git commit -m 'Generated files from arkindex/base-worker for {{ cookiecutter.name }}'
fi