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.
13 lines
382 B
Bash
13 lines
382 B
Bash
#!/usr/bin/env bash
|
|
|
|
export BASE_DIR="/opt/microchip"
|
|
export BIN_DIR="${BASE_DIR}/bin"
|
|
export INSTALLERS_DIR="${BASE_DIR}/installers"
|
|
export LICENSE_DIR="${BASE_DIR}/licenses"
|
|
export LOG_DIR="${BASE_DIR}/logs"
|
|
export SCRIPTS_DIR="${BASE_DIR}/scripts"
|
|
|
|
export LM_LICENSE_FILE="1702@libero-licenser"
|
|
export SNPSLMD_LICENSE_FILE="1702@libero-licenser"
|
|
export PATH="${BIN_DIR}:${PATH}"
|