diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-07-06 16:07:59 -0600 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-07-06 16:07:59 -0600 |
commit | e299fd1a72aaadcdd807f6c1ba08e0460a626c30 (patch) | |
tree | 2a9928b7f36a1bb24b113d481ebced49f91e9d55 | |
parent | 08375ed421d18b48388169c7fc7cf4ca076577ba (diff) |
fix bug in librefetch
-rwxr-xr-x | src/librefetch/librefetch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librefetch/librefetch b/src/librefetch/librefetch index 9aa4641..5428655 100755 --- a/src/librefetch/librefetch +++ b/src/librefetch/librefetch @@ -290,7 +290,7 @@ modified_pkgbuild() { modified_srcbuild() { local orig=$1 local new="$tempdir/SRCBUILD" - sed -e '/PKGDEST=/d' -e 's/PKGEXT=/d' < "$orig" > "$new" + sed -e '/PKGDEST=/d' -e '/PKGEXT=/d' < "$orig" > "$new" printf '%s\n' "$new" } |