diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-05-24 14:04:41 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-05-24 14:04:41 -0400 |
commit | d71e71cf7367778df0039d4624b76b2575823a5b (patch) | |
tree | e8c9798302349b41811ee0ead89869b478c692b9 /src/diff-unfree | |
parent | b8282547fba55b655ad82c34369cf9d0a5c81e3b (diff) |
remove stdnull, use plain I/O redirection
Diffstat (limited to 'src/diff-unfree')
-rwxr-xr-x | src/diff-unfree | 6 |
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" |