diff options
author | Joshua M. Boniface <joshua@boniface.me> | 2024-02-15 01:23:51 -0500 |
---|---|---|
committer | Joshua M. Boniface <joshua@boniface.me> | 2024-02-15 01:23:51 -0500 |
commit | 05d21f5f787cfa863bd1847265820ab6a119b56b (patch) | |
tree | f162f971dc2361af3235b0a891ef28ea328365a1 /portable/build.sh | |
parent | Fix version suffixing without PARCH (diff) | |
download | jellyfin-packaging-05d21f5f787cfa863bd1847265820ab6a119b56b.tar.gz jellyfin-packaging-05d21f5f787cfa863bd1847265820ab6a119b56b.tar.bz2 jellyfin-packaging-05d21f5f787cfa863bd1847265820ab6a119b56b.zip |
Make all variables more descriptive
Diffstat (limited to 'portable/build.sh')
-rwxr-xr-x | portable/build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/portable/build.sh b/portable/build.sh index b8bb2ce..c979805 100755 --- a/portable/build.sh +++ b/portable/build.sh @@ -20,7 +20,7 @@ case ${BTYPE} in APPHOST="-p:UseAppHost=false" ;; *) - RUNTIME="--self-contained --runtime ${DTYPE}-${DARCH}" + RUNTIME="--self-contained --runtime ${DOTNET_TYPE}-${DOTNET_ARCH}" APPHOST="-p:UseAppHost=true" ;; esac @@ -36,8 +36,8 @@ popd mkdir -p "${ARTIFACT_DIR}/" -if [[ -n ${PARCH} ]]; then - VERSION_SUFFIX="${JVERS}-${PARCH}" +if [[ -n ${PACKAGE_ARCH} ]]; then + VERSION_SUFFIX="${JVERS}-${PACKAGE_ARCH}" else VERSION_SUFFIX="${JVERS}" fi |