mirror of
https://github.com/marado/RNID.git
synced 2024-11-09 16:31:42 +00:00
11 lines
290 B
Bash
11 lines
290 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/52-covid.sh
|
||
|
else
|
||
|
echo "Estás a correr isto a partir da directoria certa?"
|
||
|
fi
|