diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-03-07 00:25:52 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-03-07 00:25:52 +0100 |
commit | 1795784d60cce51b5cbb9e4f26ee282cafac1bc9 (patch) | |
tree | 53812c86680f0ecdc326c874a54474198c53ed3f /bin/pkg | |
parent | 8bdaa461a51249ea78cc957d2def9d72598f5c7c (diff) |
pkg: grep to /dev/null
Diffstat (limited to 'bin/pkg')
-rwxr-xr-x | bin/pkg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -263,7 +263,7 @@ function vcs_status { # Set the correct origin function vcs_fix_origin { if [[ ! -r .git/remotes/origin && ! -r .git/refs/remotes/origin ]] { - fgrep '[remote "origin"]' .git/config || + fgrep '[remote "origin"]' .git/config &> /dev/null || git remote add origin $PKG_ROOT/$1 } git remote update &> /dev/null |