mirror of
https://github.com/zuno/slackpkgplus
synced 2024-12-26 09:58:43 +01:00
small fix to SlackBuild
This commit is contained in:
parent
e7c8a076c2
commit
accf8c5615
1 changed files with 3 additions and 2 deletions
|
@ -5,6 +5,7 @@ set -e
|
|||
TXZ=$(head -2 ChangeLog.txt|cut -f1 -d:|cut -f2 -d/|tail -1)
|
||||
VERSION=$(echo $TXZ|cut -f2 -d-)
|
||||
BUILD=$(echo $TXZ|cut -f4 -d-|sed 's/.txz//')$TAG
|
||||
echo "Building $TXZ"
|
||||
|
||||
CWD=`pwd`
|
||||
TMP=${TMP:-/tmp}
|
||||
|
@ -21,8 +22,8 @@ fi
|
|||
INST=$(ls /var/log/packages/slackpkg+-$VERSION-noarch-* 2>/dev/null||true)
|
||||
if [ ! -z "$INST" ];then
|
||||
BINST=$(echo $INST|sed 's/.*-//')
|
||||
NBUILD=$(echo $BUILD|egrep -o [0-9])
|
||||
NBINST=$(echo $BINST|egrep -o [0-9])
|
||||
NBUILD=$(echo $BUILD|sed "s/$TAG.*//")
|
||||
NBINST=$(echo $BINST|sed "s/$TAG.*//")
|
||||
if [ "$BINST" == "$BUILD" ];then
|
||||
echo "WARNING: $INST seems to be installed"
|
||||
echo " remember to change \$VERSION or \$BUILD"
|
||||
|
|
Loading…
Reference in a new issue