16 lines
231 B
Bash
16 lines
231 B
Bash
#!/bin/bash
|
|
|
|
$(dirname $0)/starter patch updates
|
|
|
|
if [ $? -ne 0 ] ; then
|
|
echo Error patch loading
|
|
exit 10
|
|
fi
|
|
|
|
$(dirname $0)/starter update -fullSync
|
|
|
|
if [ $? -ne 0 ] ; then
|
|
echo Error updating database
|
|
exit 11
|
|
fi
|