2022-07-23 05:36:03 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# mfutil - check env and define helpers
|
|
|
|
#
|
|
|
|
|
|
|
|
# Check dependencies
|
2024-09-22 01:27:14 +00:00
|
|
|
which curl &>/dev/null || { echo "curl not found! Please install it."; exit 1 ; }
|
|
|
|
which git &>/dev/null || { echo "git not found! Please install it."; exit 1 ; }
|
|
|
|
which sed &>/dev/null || { echo "sed not found! Please install it."; exit 1 ; }
|
2022-07-23 05:36:03 +00:00
|
|
|
|
|
|
|
OPEN=$( which gnome-open xdg-open open | head -n1 )
|
|
|
|
|
|
|
|
SELF=`basename "$0"`
|
|
|
|
|
|
|
|
# Check if called in the right location
|
|
|
|
[[ -e "Marlin/src" ]] || { echo -e "This script must be called from a Marlin working copy with:\n ./buildroot/bin/$SELF $1" ; exit ; }
|
|
|
|
|
|
|
|
perror() { echo -e "$0: \033[0;31m$1 -- $2\033[0m" ; }
|
|
|
|
bugout() { ((DEBUG)) && echo -e "\033[0;32m$1\033[0m" ; }
|