|
@@ -94,11 +94,11 @@ if [ -d "${INST_LOCATION}" ]; then
|
|
#copy assets over
|
|
#copy assets over
|
|
echo "Copying qwbot binary and starting script..."
|
|
echo "Copying qwbot binary and starting script..."
|
|
cp "${BIN_QWBOT}" "${INST_LOCATION}"
|
|
cp "${BIN_QWBOT}" "${INST_LOCATION}"
|
|
- cp "${STARTER}" "${INST_LOCATION}"
|
|
|
|
|
|
+ cp -v "${STARTER}" "${INST_LOCATION}"
|
|
|
|
|
|
echo "Copying qwclient library..."
|
|
echo "Copying qwclient library..."
|
|
mkdir -p "${INST_LOCATION}/libqwclient"
|
|
mkdir -p "${INST_LOCATION}/libqwclient"
|
|
- cp -d ${SRCPATH_LIBQWCL}/*.so.* "${INST_LOCATION}/libqwclient/"
|
|
|
|
|
|
+ cp -vd ${SRCPATH_LIBQWCL}/*.so.* "${INST_LOCATION}/libqwclient/"
|
|
|
|
|
|
# change into that target directory
|
|
# change into that target directory
|
|
cd ${INST_LOCATION}
|
|
cd ${INST_LOCATION}
|
|
@@ -109,7 +109,7 @@ if [ -d "${INST_LOCATION}" ]; then
|
|
PID=$!
|
|
PID=$!
|
|
echo PID $PID
|
|
echo PID $PID
|
|
sleep 1
|
|
sleep 1
|
|
- kill $PID
|
|
|
|
|
|
+ kill -9 $PID > /dev/null
|
|
else
|
|
else
|
|
echo
|
|
echo
|
|
echo "It seems there have been problems compiling this thing! The binary ./${BIN_QWBOT} is missing."
|
|
echo "It seems there have been problems compiling this thing! The binary ./${BIN_QWBOT} is missing."
|