diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-05-29 21:34:27 -0600 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-06-05 19:40:10 -0600 |
commit | b80db9fe6e1b435c294885394c9d4eb804fd6750 (patch) | |
tree | 529e76d1e25ef5f3b99e1a830bb6a15efc6220bf | |
parent | c0502e7974dd82747fe289c060ff6b1883f87cd5 (diff) |
aur: don't support not diffing a package if there is diffing to be done
-rwxr-xr-x | src/aur | 13 |
1 files changed, 4 insertions, 9 deletions
@@ -59,15 +59,10 @@ main() { if [[ -f "${_pkg}/PKGBUILD" ]]; then warning "${_pkg} already existed." - # Check if we want to diff - if [[ -z "${DIFFTOOL}" ]]; then - continue - else - # Store our copy of the PKGBUILD dir - _diff="${PWD}/${_pkg}" - pushd $(mktemp --tmpdir -d ${_pkg}.XXXX) &>/dev/null - msg2 "Downloading PKGBUILD into ${PWD} for diff" - fi + # Store our copy of the PKGBUILD dir + _diff="${PWD}/${_pkg}" + pushd $(mktemp --tmpdir -d ${_pkg}.XXXX) &>/dev/null + msg2 "Downloading PKGBUILD into ${PWD} for diff" fi msg "Downloading $_pkg..." |