diff options
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" |