diff options
author | tv <tv@shackspace.de> | 2014-07-15 12:46:42 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2014-07-15 12:46:42 +0200 |
commit | 55ce96f905c2abd96346abc007d87b35a0074656 (patch) | |
tree | 9a3bb1efbc1d5b898773d9a996377843119f6f83 /Reaktor/commands | |
parent | 0bead921a24d9856c74ee8c1f296c2a45e634647 (diff) |
Reaktor nag: s/grep/sed/
Diffstat (limited to 'Reaktor/commands')
-rwxr-xr-x | Reaktor/commands/nag | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Reaktor/commands/nag b/Reaktor/commands/nag index 2b33d5e1..7c4fd3c6 100755 --- a/Reaktor/commands/nag +++ b/Reaktor/commands/nag @@ -11,13 +11,13 @@ trap 'rm -f nag.hosts.ls nag.services.ls nag.patch' EXIT INT QUIT if ! test -d nag.hosts; then git clone "$hosts_repo" nag.hosts else - (cd nag.hosts && git pull) | grep -v 'Already up-to-date.' + (cd nag.hosts && git pull) | sed '/Already up-to-date/d' fi if ! test -d nag.services; then git clone "$services_repo" nag.services else - (cd nag.services && git pull) | grep -v 'Already up-to-date.' + (cd nag.services && git pull) | sed '/Already up-to-date/d' fi |