summary refs log tree commit diff stats
path: root/zsh
diff options
context:
space:
mode:
authorAlan Pearce2013-11-09 12:47:39 +0000
committerAlan Pearce2013-11-09 12:47:39 +0000
commit673536be4358e9db7d683f7a1653470ba3bffe0b (patch)
tree1cb8993685345ba3a18e23d1f2c5d9726253ce2b /zsh
parent047826207bfdde0d530b608186410cf48c780155 (diff)
downloaddotfiles-673536be4358e9db7d683f7a1653470ba3bffe0b.tar.lz
dotfiles-673536be4358e9db7d683f7a1653470ba3bffe0b.tar.zst
dotfiles-673536be4358e9db7d683f7a1653470ba3bffe0b.zip
zsh: Don't fetch audit list when running update-check
Diffstat (limited to 'zsh')
-rwxr-xr-xzsh/freebsd.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/zsh/freebsd.zsh b/zsh/freebsd.zsh
index 63f6b8b..9b1e6a2 100755
--- a/zsh/freebsd.zsh
+++ b/zsh/freebsd.zsh
@@ -2,7 +2,7 @@
 function update-check () {
 	sudo portsnap update
 	sudo portmaster -L --index-only | awk '/ [Nn]ew / { print substr($0,9,9999) }'
-	sudo portaudit -Fa -X 1
+	sudo portaudit -a -X 1
 	pkg updating -d $( ls -ltr -D '%Y%m%d' /var/db/pkg | awk 'END{print $6}' )
 }
 alias iotop="top -m io -o total"