diff options
author | rudson <rudson@04377dda-e619-0410-9926-eae83683ac58> | 2008-05-12 20:52:44 +0000 |
---|---|---|
committer | rudson <rudson@04377dda-e619-0410-9926-eae83683ac58> | 2008-05-12 20:52:44 +0000 |
commit | ce4b6fe402500e12e35690f58fd5da081d8a00f3 (patch) | |
tree | 9e4850cd277d3831f3ff5d447cd08241b0d53803 /trunk/src/createpkg | |
parent | 28d94ce9c6bec73c01553b99c36aff59c1ed1ed7 (diff) | |
download | simplepkg-ce4b6fe402500e12e35690f58fd5da081d8a00f3.tar.gz simplepkg-ce4b6fe402500e12e35690f58fd5da081d8a00f3.tar.bz2 |
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@512 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/src/createpkg')
-rw-r--r-- | trunk/src/createpkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/createpkg b/trunk/src/createpkg index ce85a9c..1dd568e 100644 --- a/trunk/src/createpkg +++ b/trunk/src/createpkg @@ -162,7 +162,7 @@ function find_slackbuild { # Find SlackBuild script in the repository [ $# -ne 1 ] && handle_error $ERROR_PAR_NUMBER OUTPUT=`find $SLACKBUILDS_DIR -iname $1.SlackBuild` - [ "$OUTPUT" =! "" ] && EXIT_CODE=0 || EXIT_CODE=1 + [ "$OUTPUT" != "" ] && EXIT_CODE=0 || EXIT_CODE=1 echo $OUTPUT } |