summaryrefslogtreecommitdiff
path: root/xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'xibuild')
-rwxr-xr-xxibuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/xibuild b/xibuild
index d8661e1..a9fad9b 100755
--- a/xibuild
+++ b/xibuild
@@ -137,8 +137,8 @@ xibuild () {
package >> $LOGFILE 2>&1 && printf "$PASS packaged\n" || return 1;
# add postinstall script
- if command -v postinstall; then
- POSTINSTALL=$( && type postinstall | sed '1,3d;$d')
+ if command -v postinstall > /dev/null; then
+ POSTINSTALL=$(type postinstall | sed '1,3d;$d')
if [ ${#POSTINSTALL} != 0 ]; then
POST_DIR=$PKG_DEST/tmp/xi/postinstall
mkdir -p $POST_DIR