mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 15:31:32 +03:00
17 lines
226 B
Bash
17 lines
226 B
Bash
|
# leo clone
|
||
|
|
||
|
$LEO clone leobot/test-app
|
||
|
|
||
|
# Assert that the 'test-app' folder is not empty
|
||
|
|
||
|
cd test-app || exit 1
|
||
|
if [ "$(ls -A $DIR)" ]; then
|
||
|
echo "$DIR is not empty"
|
||
|
else
|
||
|
echo "$DIR is empty"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
ls -la
|
||
|
$LEO run
|