Skip to content

Commit

Permalink
beesh: Fix naming bee-files in BEEDIR
Browse files Browse the repository at this point in the history
Introduced with

3aaed0d and
61fba00

bee-files are named after PKGALLPKG, which is wrong.

The correct name is BEE_BEEDIR/PKGFULLPKG.bee

This is fixed now.
  • Loading branch information
mariux committed Sep 25, 2012
1 parent 51e275e commit 2dac96b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/beesh.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ function bee_pkg_pack() {
${D}/CONTENT )

beefilename=${BEE##*/}
beefiledest=${BEE_BEEDIR}/${PKGALLPKG}.bee
beefiledest=${BEE_BEEDIR}/${PKGFULLPKG}.bee

print_info "-> saving bee-file ${beefilename} .."
print_info "${COLOR_CYAN}${beefiledest}"
Expand Down Expand Up @@ -569,7 +569,7 @@ function bee_archivebuild() {
--absolute-names \
${S} ${B} \
${bee_FETCHED_FILES[@]} \
${BEE_BEEDIR}/${PKGALLPKG}.bee \
${BEE_BEEDIR}/${PKGFULLPKG}.bee \
--transform="s,^${BEEWORKDIR},${PKGALLPKG}," \
--transform="s,^${F},${PKGALLPKG}/files," \
--transform="s,^${BEE_BEEDIR},${PKGALLPKG}/files,"
Expand Down

0 comments on commit 2dac96b

Please sign in to comment.