mirror of
https://github.com/supleed2/ELEC50010-IAC-CW.git
synced 2024-12-22 21:35:48 +00:00
Fix test script not being able to find src dir
Bus fixed in previous commit
This commit is contained in:
parent
a31d41512b
commit
a59e73f746
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue