#!/usr/bin/env bash if ! [ -d ".git" ] ; then git init fi while true; do python -m app exit_code=$? [ $exit_code -ne 69 ] && break done