9 lines
143 B
Bash
Executable File
9 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $TRAVIS_EVENT_TYPE == 'cron' ] ; then
|
|
# Tests scripts.
|
|
echo 'CRON NOT IMPLEMENTED YET'
|
|
else
|
|
./scripts/aot.sh
|
|
fi
|