gui and api: ensure curl is installed

pull/884/head
Botspot 4 years ago
parent ff299c4531
commit 6255eaec1c

3
api

@ -329,6 +329,7 @@ get_device_info() { #returns information about current install and hardware
echo "OS: $(cat /etc/os-release | grep PRETTY_NAME | tr -d '"' | awk -F= '{print $2}')"
echo "Kernel: $(uname -m) $(uname -r)"
echo "Userland CPU architecture: ${arch}-bit"
echo "Device model: $(cat /proc/cpuinfo | grep Model | sed 's/Model.*: //g')"
if [ -f /etc/rpi-issue ];then
echo "Raspberry Pi OS image version: $(cat /etc/rpi-issue | grep 'Raspberry Pi reference' | sed 's/Raspberry Pi reference //g')"
@ -362,6 +363,8 @@ send_error_report_gui() { #Ask user for permission to send error report
[ ! -f "$1" ] && error "send_error_report_gui(): Given error report file ($1) does not exist!"
[ -z "$2" ] && error "send_error_report_gui(): requires an argument for window text!"
command -v curl >/dev/null || error "send_error_report_gui(): curl is not installed!"
export -f text_editor
export DIRECTORY

6
gui

@ -100,6 +100,12 @@ runonce <<"EOF"
fi
EOF
runonce <<"EOF"
if ! command -v curl >/dev/null ;then
sudo apt install -y curl
fi
EOF
install() {
app="$1" #one app name per line

Loading…
Cancel
Save