mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-26 17:15:38 +00:00
Pull quiet to avoid the 'Already up to date' warning in r2pm
This commit is contained in:
parent
025946c321
commit
e4770a2c9c
@ -74,9 +74,9 @@ static int git_pull(const char *dir, bool reset) {
|
||||
free (s);
|
||||
}
|
||||
#if R2__WINDOWS__
|
||||
char *s = r_str_newf ("cd %s && git pull && git diff", dir);
|
||||
char *s = r_str_newf ("cd %s && git pull --quiet && git diff", dir);
|
||||
#else
|
||||
char *s = r_str_newf ("cd '%s' && git pull && git diff | cat", dir);
|
||||
char *s = r_str_newf ("cd '%s' && git pull --quiet", dir);
|
||||
#endif
|
||||
int rc = r_sandbox_system (s, 1);
|
||||
free (s);
|
||||
|
Loading…
x
Reference in New Issue
Block a user