From 89825efbee2fa6bf6a6dbfcad979ebaf640de5da Mon Sep 17 00:00:00 2001 From: Devel Date: Fri, 4 Sep 2026 21:18:29 +0300 Subject: [PATCH] hostname, uptime, whoami: add no_flush --- src/uu/hostname/src/main.rs | 2 +- src/uu/uptime/src/main.rs | 2 +- src/uu/whoami/src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/uu/hostname/src/main.rs b/src/uu/hostname/src/main.rs index 7ad3364c79f..3609547136e 100644 --- a/src/uu/hostname/src/main.rs +++ b/src/uu/hostname/src/main.rs @@ -3,4 +3,4 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -uucore::bin!(uu_hostname); +uucore::bin!(uu_hostname, no_flush); diff --git a/src/uu/uptime/src/main.rs b/src/uu/uptime/src/main.rs index ec30c0d5cb1..5823b728626 100644 --- a/src/uu/uptime/src/main.rs +++ b/src/uu/uptime/src/main.rs @@ -3,4 +3,4 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -uucore::bin!(uu_uptime); +uucore::bin!(uu_uptime, no_flush); diff --git a/src/uu/whoami/src/main.rs b/src/uu/whoami/src/main.rs index 0c9ee7f689c..7a6c9b9a1c1 100644 --- a/src/uu/whoami/src/main.rs +++ b/src/uu/whoami/src/main.rs @@ -3,4 +3,4 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -uucore::bin!(uu_whoami); +uucore::bin!(uu_whoami, no_flush);