diff options
author | Florian Schmaus <flow@gentoo.org> | 2024-02-11 11:33:12 +0100 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2024-02-11 11:33:12 +0100 |
commit | bb700f5ac06a12017f519ea4bf07ae6a463b8b4d (patch) | |
tree | c048f7fec1c8aa9744045156beac753e99129a01 | |
parent | Merge remote-tracking branch 'local-tex-dev/main' (diff) | |
download | tex-bb700f5ac06a12017f519ea4bf07ae6a463b8b4d.tar.gz tex-bb700f5ac06a12017f519ea4bf07ae6a463b8b4d.tar.bz2 tex-bb700f5ac06a12017f519ea4bf07ae6a463b8b4d.zip |
populate-distdir: add quotes
Signed-off-by: Florian Schmaus <flow@gentoo.org>
-rwxr-xr-x | populate-distdir | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/populate-distdir b/populate-distdir index 6baaed9..b63abfa 100755 --- a/populate-distdir +++ b/populate-distdir @@ -3,8 +3,8 @@ set -euo pipefail SCRIPT_DIR=$(cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd) -: ${TEX_OVERLAY_PATH:=$(portageq get_repo_path / tex-overlay)} -: ${DISTDIR:="${SCRIPT_DIR}/distdir"} +: "${TEX_OVERLAY_PATH:=$(portageq get_repo_path / tex-overlay)}" +: "${DISTDIR:="${SCRIPT_DIR}/distdir"}" if [[ ! -d "${DISTDIR}" ]]; then mkdir "${DISTDIR}" |