7 lines
61 B
Bash
7 lines
61 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd "${0%/*}"
|
||
|
git pull
|
||
|
|
||
|
cd -
|
||
|
python3 run-tests.sh
|