8 lines
70 B
Bash
Executable File
8 lines
70 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if ! [ -d ".git" ] ; then
|
|
git init
|
|
fi
|
|
|
|
python3 -m app
|