7 lines
101 B
Bash
7 lines
101 B
Bash
|
#!/bin/bash
|
||
|
cd ../
|
||
|
if [[ -d "budibase-pro" ]]; then
|
||
|
cd budibase-pro
|
||
|
yarn test
|
||
|
cd ../budibase
|
||
|
fi
|