diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-04-30 03:29:17 -0500 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-04-30 03:45:04 -0500 |
commit | f33f1f0ed91fb33e7681291f7f6b260447fcfb86 (patch) | |
tree | 56a07fd8649f9ab50f705cd764c71af1e0a2efba /libremakepkg | |
parent | a3204e055fb538cdca56fc477d264c6d46e72ca3 (diff) |
pkgbuild-check-nonfree can check if a nonfree has a -libre replacement
Diffstat (limited to 'libremakepkg')
-rwxr-xr-x | libremakepkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libremakepkg b/libremakepkg index 8cce89d..988b6f2 100755 --- a/libremakepkg +++ b/libremakepkg @@ -27,7 +27,7 @@ fi msg "Checking PKGBUILD for non-free issues" pkgbuild-check-nonfree ||{ - if [[$?=15]]; then + if [[ $? -eq 15 ]]; then error "PKGBUILD contains non-free issues" exit 15 else |