aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot <root@nc.nor.wtbts.org>2008-11-19 15:16:55 +0000
committerroot <root@nc.nor.wtbts.org>2008-11-19 15:16:55 +0000
commit38e8e54501201fd7a87327a43563d43e0237a5fd (patch)
treebb9730018e121eef272f8454c8ae65a680ecfc2d
parente937f31bd1d54b5dacbc306f93fe8274968552f9 (diff)
downloadalpine-conf-38e8e54501201fd7a87327a43563d43e0237a5fd.tar.bz2
alpine-conf-38e8e54501201fd7a87327a43563d43e0237a5fd.tar.xz
allow lbu package send to stdout by using filename '-'
-rw-r--r--Makefile2
-rw-r--r--lbu8
2 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 19111a8..529fef8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-V=1.7
+V=1.7.1
P=alpine-conf
PV=$(P)-$(V)
APKF=$(PV).apk
diff --git a/lbu b/lbu
index 632608d..72e8a7a 100644
--- a/lbu
+++ b/lbu
@@ -273,7 +273,13 @@ cmd_package() {
# actually commit unless dryrun mode
if [ $rc -eq 0 ]; then
- [ -z "$DRYRUN" ] && cp "$tmppkg" "$pkg"
+ if [ -z "$DRYRUN" ]; then
+ if [ "x$pkg" = "x-" ]; then
+ cat "$tmppkg"
+ else
+ cp "$tmppkg" "$pkg"
+ fi
+ fi
vecho "Created $pkg"
else
rm -f "$CURRENT_TDB"