10 lines
169 B
Bash
Executable File
10 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
cd "$(dirname ${BASH_SOURCE[0]})"
|
|
while [[ 1 ]]
|
|
do
|
|
killall DbContinuousIntegrationWrapper.sh
|
|
/usr/bin/php DbContinuousIntegration.php
|
|
make
|
|
sleep 10
|
|
done
|