9 lines
107 B
Bash
Executable file
9 lines
107 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -x
|
|
set -e
|
|
|
|
while python matchy.py
|
|
do
|
|
git fetch
|
|
git checkout validated
|
|
done
|