diff options
author | Justine Smithies <justine@smithies.me.uk> | 2024-06-08 20:35:23 +0100 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2024-06-08 20:35:23 +0100 |
commit | f36843c1930bf787f37edc3ffedb4be397d734ed (patch) | |
tree | 4af734cae7023061ee75c00e8a526e3294170b67 /.config | |
parent | ccbbad7898759e6a1f285e3670afe98b2ff913cb (diff) |
Added &>/dev/null to apk update line to stop warnings in /var/log/messages
Diffstat (limited to '.config')
-rwxr-xr-x | .config/yambar/scripts/chimera-updates.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/yambar/scripts/chimera-updates.sh b/.config/yambar/scripts/chimera-updates.sh index 2a948ae..1cbc05d 100755 --- a/.config/yambar/scripts/chimera-updates.sh +++ b/.config/yambar/scripts/chimera-updates.sh @@ -6,7 +6,7 @@ echo "" while true; do -doas apk update +doas apk update &>/dev/null updates="$(apk -u list | awk '{ print $1 }')" number="$(apk -u list | wc -l | awk '{$1=$1};1')" |