diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-05-16 19:12:49 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-05-16 19:12:49 -0300 |
commit | 56e183631d6e4e12df4990d119456dd81423938e (patch) | |
tree | 11ff4896c23f7ed5ada36c0904dddcf08fdedcd0 | |
parent | f01335a45638dd713dd4c91d85f881eb21d3d354 (diff) |
Fixed pkgbuild-check-nonfree on libremakepkg
-rwxr-xr-x | libremakepkg | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libremakepkg b/libremakepkg index 8cce89d..af0b7a9 100755 --- a/libremakepkg +++ b/libremakepkg @@ -26,10 +26,10 @@ if [ $UID -ne 0 ]; then fi msg "Checking PKGBUILD for non-free issues" -pkgbuild-check-nonfree ||{ - if [[$?=15]]; then - error "PKGBUILD contains non-free issues" - exit 15 +pkgbuild-check-nonfree || { + if [[ $? = 15 ]]; then + error "PKGBUILD contains non-free issues" + exit 15 else error "Check failed, continuing" fi |