fix: allow globbing
This commit is contained in:
parent
94c41477bc
commit
7bd64558f9
|
|
@ -66,7 +66,7 @@ setup_simulavr(){
|
||||||
|
|
||||||
build_simulavr(){
|
build_simulavr(){
|
||||||
file="${HOME}/simulavr/build/pysimulavr/_pysimulavr.*.so"
|
file="${HOME}/simulavr/build/pysimulavr/_pysimulavr.*.so"
|
||||||
[ "$(ls "$file" 2> /dev/null)" ] && return
|
[ "$(ls $file 2> /dev/null)" ] && return
|
||||||
echo "##### Building Simulavr ..."
|
echo "##### Building Simulavr ..."
|
||||||
cd ~/simulavr || exit 1
|
cd ~/simulavr || exit 1
|
||||||
make clean && make python && make build
|
make clean && make python && make build
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue