7 lines
72 B
Bash
Executable file
7 lines
72 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
rsync -av /data/git git
|
|
cd git
|
|
|
|
python3 -m pytest $@
|