Skip to content

Commit 356a847

Browse files
committed
all: add "(uutils coreutils)" to version string
1 parent 429a223 commit 356a847

File tree

98 files changed

+101
-101
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+101
-101
lines changed

src/uu/arch/src/arch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
2424

2525
pub fn uu_app() -> Command {
2626
Command::new(uucore::util_name())
27-
.version(crate_version!())
27+
.version(concat!("(uutils coreutils) ", crate_version!()))
2828
.about(ABOUT)
2929
.after_help(SUMMARY)
3030
.infer_long_args(true)

src/uu/base32/src/base_common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ pub fn parse_base_cmd_args(
104104

105105
pub fn base_app(about: &'static str, usage: &str) -> Command {
106106
Command::new(uucore::util_name())
107-
.version(crate_version!())
107+
.version(concat!("(uutils coreutils) ", crate_version!()))
108108
.about(about)
109109
.override_usage(format_usage(usage))
110110
.infer_long_args(true)

src/uu/basename/src/basename.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
7676

7777
pub fn uu_app() -> Command {
7878
Command::new(uucore::util_name())
79-
.version(crate_version!())
79+
.version(concat!("(uutils coreutils) ", crate_version!()))
8080
.about(ABOUT)
8181
.override_usage(format_usage(USAGE))
8282
.infer_long_args(true)

src/uu/cat/src/cat.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
229229

230230
pub fn uu_app() -> Command {
231231
Command::new(uucore::util_name())
232-
.version(crate_version!())
232+
.version(concat!("(uutils coreutils) ", crate_version!()))
233233
.override_usage(format_usage(USAGE))
234234
.about(ABOUT)
235235
.infer_long_args(true)

src/uu/chcon/src/chcon.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
149149

150150
pub fn uu_app() -> Command {
151151
Command::new(uucore::util_name())
152-
.version(crate_version!())
152+
.version(concat!("(uutils coreutils) ", crate_version!()))
153153
.about(ABOUT)
154154
.override_usage(format_usage(USAGE))
155155
.infer_long_args(true)

src/uu/chgrp/src/chgrp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
9898

9999
pub fn uu_app() -> Command {
100100
Command::new(uucore::util_name())
101-
.version(crate_version!())
101+
.version(concat!("(uutils coreutils) ", crate_version!()))
102102
.about(ABOUT)
103103
.override_usage(format_usage(USAGE))
104104
.infer_long_args(true)

src/uu/chmod/src/chmod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
157157

158158
pub fn uu_app() -> Command {
159159
Command::new(uucore::util_name())
160-
.version(crate_version!())
160+
.version(concat!("(uutils coreutils) ", crate_version!()))
161161
.about(ABOUT)
162162
.override_usage(format_usage(USAGE))
163163
.args_override_self(true)

src/uu/chown/src/chown.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
7878

7979
pub fn uu_app() -> Command {
8080
Command::new(uucore::util_name())
81-
.version(crate_version!())
81+
.version(concat!("(uutils coreutils) ", crate_version!()))
8282
.about(ABOUT)
8383
.override_usage(format_usage(USAGE))
8484
.infer_long_args(true)

src/uu/chroot/src/chroot.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
239239

240240
pub fn uu_app() -> Command {
241241
Command::new(uucore::util_name())
242-
.version(crate_version!())
242+
.version(concat!("(uutils coreutils) ", crate_version!()))
243243
.about(ABOUT)
244244
.override_usage(format_usage(USAGE))
245245
.infer_long_args(true)

src/uu/cksum/src/cksum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
342342

343343
pub fn uu_app() -> Command {
344344
Command::new(uucore::util_name())
345-
.version(crate_version!())
345+
.version(concat!("(uutils coreutils) ", crate_version!()))
346346
.about(ABOUT)
347347
.override_usage(format_usage(USAGE))
348348
.infer_long_args(true)

0 commit comments

Comments
 (0)