diff options
| -rwxr-xr-x | commands/nag | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/commands/nag b/commands/nag index e5380fc..2b33d5e 100755 --- a/commands/nag +++ b/commands/nag @@ -9,15 +9,15 @@ fi  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 | grep -v 'Alreay up-to-date.' +    git clone "$hosts_repo" nag.hosts  else -    (cd nag.hosts && git pull) +    (cd nag.hosts && git pull) | grep -v 'Already up-to-date.'  fi  if ! test -d nag.services; then -    git clone "$services_repo" nag.services | grep -v 'Already up-to-date.' +    git clone "$services_repo" nag.services  else -    (cd nag.services && git pull) +    (cd nag.services && git pull) | grep -v 'Already up-to-date.'  fi | 
