Skip to content

Commit

Permalink
Added orgname to the parameters taken from the pkgvars file and updat…
Browse files Browse the repository at this point in the history
…ed the repo path
  • Loading branch information
sedagundogdu committed Dec 9, 2024
1 parent f1e8d59 commit 7606926
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/fetch_and_build_deb
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ source /buildfiles/pkgvars
declare pkglatest # to make shellcheck happy
pkgname="${deb_pkgname:-${pkgname}}"
hubproj="${hubproj:-${pkgname}}"
orgname="${orgname:-citusdata}" # Default to citusdata if not set in pkgvars
nightlyref="${nightlyref:-master}"
versioning="${versioning:-simple}"
if [[ "${pkglatest}" == *"beta"* ]]; then
Expand Down Expand Up @@ -97,7 +98,8 @@ export EMAIL
EMAIL=$(determine_email)

cp -R /buildfiles/debian "${builddir}"
repopath="citusdata/${hubproj}"
repopath="${orgname}/${hubproj}"
echo "Repository path: ${repopath}" # to see whether correct or not

case "${1}" in
release)
Expand Down

0 comments on commit 7606926

Please sign in to comment.