summaryrefslogtreecommitdiff
path: root/src/diff-unfree
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-05-24 14:04:41 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-05-24 14:04:41 -0400
commitd71e71cf7367778df0039d4624b76b2575823a5b (patch)
treee8c9798302349b41811ee0ead89869b478c692b9 /src/diff-unfree
parentb8282547fba55b655ad82c34369cf9d0a5c81e3b (diff)
remove stdnull, use plain I/O redirection
Diffstat (limited to 'src/diff-unfree')
-rwxr-xr-xsrc/diff-unfree6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/diff-unfree b/src/diff-unfree
index 24ada67..a770214 100755
--- a/src/diff-unfree
+++ b/src/diff-unfree
@@ -63,17 +63,17 @@ main() {
fi
unfree_dir="${tmp_dir}/${svnrepo}/${package}/${trunk}"
- stdnull 'pushd "${tmp_dir}"'
+ pushd "${tmp_dir}" &>/dev/null
msg "Getting diff from $repo/$package..."
- stdnull 'svn checkout --depth=empty svn://svn.archlinux.org/$svnrepo'
+ svn checkout --depth=empty svn://svn.archlinux.org/$svnrepo &>/dev/null
cd ${svnrepo}
svn update ${package}
# Back to start dir
- stdnull popd
+ popd &>/dev/null
msg "Diffing files"