peliprint/blueprint/lib/telemetry.sh

14 lines
406 B
Bash
Raw Normal View History

#!/bin/bash
#
# This script has been created as part of the Blueprint source code
# and may be intergrated directly into the core in the future.
sendTelemetry() {
cd $BLUEPRINT__FOLDER
key=$(cat .blueprint/extensions/blueprint/private/db/telemetry_id)
if [[ $key == "KEY_NOT_UPDATED" ]]; then
exit 1
fi
curl --location --silent "http://api.blueprint.zip:50000/send/$key/$1" > /dev/null
}