Fix test script not being able to find src dir

Bus fixed in previous commit
This commit is contained in:
jl7719 2020-12-18 12:51:53 +00:00
parent a31d41512b
commit a59e73f746

View file

@ -1,7 +1,7 @@
#!/bin/bash
SRC_DIR=${1?Error: no source directory given in argument};
SRC=$(find ./${SRC_DIR}/*);
SRC=$(find ${SRC_DIR}/*);
SRC_TEMP="";
for src in ${SRC}
do