From d71e71cf7367778df0039d4624b76b2575823a5b Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 24 May 2013 14:04:41 -0400 Subject: remove stdnull, use plain I/O redirection --- src/diff-unfree | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/diff-unfree') 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" -- cgit v1.2.3-54-g00ecf