From 616d10b5943120acb87634e07fe35e2b7dc1ccd8 Mon Sep 17 00:00:00 2001 From: Anatoli Babenia Date: Sat, 12 Apr 2025 23:50:08 +0300 Subject: [PATCH] feat(quickget): Show download path (#1516) * feat(quickget): Show full download path --------- Co-authored-by: Phil Clifford --- quickget | 1 + 1 file changed, 1 insertion(+) diff --git a/quickget b/quickget index 0e63a21..d4843b1 100755 --- a/quickget +++ b/quickget @@ -1247,6 +1247,7 @@ function web_get() { if [[ ${OS} != windows && ${OS} != macos && ${OS} != windows-server ]]; then echo "Downloading $(pretty_name "${OS}") ${RELEASE} ${EDITION}" echo "- URL: ${URL}" + echo "- PATH: ${PWD}/${DIR}/${FILE}" fi if ! curl --disable --progress-bar --location --output "${DIR}/${FILE}" --continue-at - --user-agent "${USER_AGENT}" "${HEADERS[@]}" -- "${URL}"; then