mirror of
https://github.com/marado/RNID.git
synced 2024-11-10 00:40:40 +00:00
12 lines
314 B
Bash
12 lines
314 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
## This script should only run the scripts that test things that cannot be
|
||
|
## automatically tested by Github Actions due to network restrictions.
|
||
|
|
||
|
if [ -e scripts/manual.sh ]; then
|
||
|
./scripts/14-mai.sh
|
||
|
./scripts/52-covid.sh
|
||
|
else
|
||
|
echo "Estás a correr isto a partir da directoria certa?"
|
||
|
fi
|