1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-17 11:06:13 +02:00

Fix release package paths

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
David Oberhollenzer 2018-01-25 13:20:33 +01:00
parent df68358afd
commit 875a348d2d
2 changed files with 2 additions and 2 deletions

View file

@ -32,6 +32,6 @@ deploy() {
local DEPLOY="$3"
pushd "$PKGBUILDDIR" > /dev/null
tar czf "${DEPLOY}/release-${CFG}.tar.gz" "release-${CFG}"
tar czf "${DEPLOY}/release-${CFG}.tar.gz" "${PKGDIR}-release-${CFG}"
popd > /dev/null
}

View file

@ -31,6 +31,6 @@ deploy() {
local DEPLOY="$3"
pushd "$PKGBUILDDIR" > /dev/null
tar czf "${DEPLOY}/release-${CFG}.tar.gz" "release-${CFG}"
tar czf "${DEPLOY}/release-${CFG}.tar.gz" "${PKGDIR}-release-${CFG}"
popd > /dev/null
}