Skip to content

Commit

Permalink
bee-install: fail early if package is not a tar archive
Browse files Browse the repository at this point in the history
  • Loading branch information
donald committed Aug 24, 2016
1 parent d59c718 commit 17a0e1f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bee-install.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,8 @@ function do_install_file() {
--transform="s,^META$,${BEE_METADIR}/${pkg}/META," \
--transform="s,^PATCHES,${BEE_METADIR}/${pkg}/PATCHES," \
--transform="s,^DEPENDENCIES$,${BEE_METADIR}/${pkg}/DEPENDENCIES.deprecated," \
--show-transformed-names
--show-transformed-names \
|| exit 1

if [ ! -e "${BEE_METADIR}/${pkg}/CONTENT.INSTALL" ] ; then
# create CONTENT.INSTALL from CONTENT.FILES
Expand Down

0 comments on commit 17a0e1f

Please sign in to comment.