You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
390 B
17 lines
390 B
#!/bin/bash
|
|
|
|
INSTALL_SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
source $INSTALL_SCRIPT_DIR/config.sh
|
|
source $INSTALL_SCRIPT_DIR/scripts/colors.sh
|
|
source $INSTALL_SCRIPT_DIR/programs/os_install.sh
|
|
source $INSTALL_SCRIPT_DIR/scripts/check_installed.sh
|
|
|
|
|
|
if [ $( check_installed hellim ) -eq 1 ]
|
|
then
|
|
echo Is installed
|
|
else
|
|
echo Is not installed
|
|
fi
|