You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
324 B
Bash
10 lines
324 B
Bash
#!/usr/bin/env bash
|
|
SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
|
INSTALLERPATH="${SCRIPTPATH}/../installers"
|
|
. "${SCRIPTPATH}/env"
|
|
if ! [[ -f "${INSTALLERPATH}/Libero_SoC_${LIBERO_VERSION}.bin" ]]; then
|
|
echo "Installer not found. Did you download the installer?"
|
|
else
|
|
echo "Installer found"
|
|
fi
|