Path: blob/main/package/src/set_package_paths.sh
12924 views
# Configuration Target Directories1export SCRIPT_PATH=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )2export QUARTO_ROOT=$(cd -- "${SCRIPT_PATH}/../.." &> /dev/null && pwd )3export QUARTO_SRC_PATH=${QUARTO_ROOT}/src45# Full paths are what the Quarto code uses internally. You should never see a _DIR entry in there.6# Note that the conda recipe defines some of these itself, so these are mainly just for the7# zip file archives that we build.89# These are the paths within the Quarto source tree - the "package" subfolder.10export QUARTO_PACKAGE_PATH=${QUARTO_PACKAGE_PATH=${QUARTO_ROOT}/${QUARTO_PACKAGE_DIR}}1112# These paths end up in the output package or conda build prefix.13export QUARTO_DIST_PATH=${QUARTO_DIST_PATH=${QUARTO_PACKAGE_PATH}/${QUARTO_DIST_DIR}}14export QUARTO_SHARE_PATH=${QUARTO_SHARE_PATH=${QUARTO_DIST_PATH}/${QUARTO_SHARE_DIR}}15export QUARTO_BIN_PATH=${QUARTO_BIN_PATH=${QUARTO_DIST_PATH}/${QUARTO_BIN_DIR}}1617