mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-27 06:55:54 -04:00
12 lines
104 B
Bash
Executable File
12 lines
104 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function run()
|
|
{
|
|
echo "TESTING $1"
|
|
cd "$1/tests/"
|
|
./test.sh
|
|
cd ../../
|
|
}
|
|
|
|
run input
|