Skip to content

Commit 77a242e

Browse files
committed
make background sync actually quiet
1 parent 47ccf56 commit 77a242e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

init/bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if [ ! -x "$MII" ]; then
2828
fi
2929

3030
# synchronize the index quietly and quickly
31-
mii sync 2>/dev/null &
31+
(mii sync 2>/dev/null &)
3232

3333
# execute the common handler
3434
command_not_found_handle() {

init/zsh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if [ ! -x "$MII" ]; then
2828
fi
2929

3030
# synchronize the index quickly and quietly
31-
mii sync 2>/dev/null &
31+
(mii sync 2>/dev/null &)
3232

3333
# execute the common handler
3434
command_not_found_handler() {

0 commit comments

Comments
 (0)