Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/commands/manifest/cmd-manifest-gradle.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('socket manifest gradle', async () => {
"[beta] Use Gradle to generate a manifest file (\`pom.xml\`) for a Gradle/Java/Kotlin/etc project

Usage
$ socket manifest gradle [--gradle=path/to/gradle/binary] [--out=path/to/result] DIR
$ socket manifest gradle [--bin=path/to/gradle/binary] [--out=path/to/result] DIR

Options
--bin Location of gradlew binary to use, default: CWD/gradlew
Expand Down Expand Up @@ -57,7 +57,7 @@ describe('socket manifest gradle', async () => {
Examples

$ socket manifest gradle .
$ socket manifest gradle --gradlew=../gradlew ."
$ socket manifest gradle --bin=../gradlew ."
`
)
expect(`\n ${stderr}`).toMatchInlineSnapshot(`
Expand Down
4 changes: 2 additions & 2 deletions src/commands/manifest/cmd-manifest-gradle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const config: CliCommandConfig = {
},
help: (command, config) => `
Usage
$ ${command} [--gradle=path/to/gradle/binary] [--out=path/to/result] DIR
$ ${command} [--bin=path/to/gradle/binary] [--out=path/to/result] DIR

Options
${getFlagListOutput(config.flags, 6)}
Expand Down Expand Up @@ -84,7 +84,7 @@ const config: CliCommandConfig = {
Examples

$ ${command} .
$ ${command} --gradlew=../gradlew .
$ ${command} --bin=../gradlew .
`
}

Expand Down
4 changes: 2 additions & 2 deletions src/commands/manifest/cmd-manifest-kotlin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('socket manifest kotlin', async () => {
"[beta] Use Gradle to generate a manifest file (\`pom.xml\`) for a Kotlin project

Usage
$ socket manifest kotlin [--gradle=path/to/gradle/binary] [--out=path/to/result] DIR
$ socket manifest kotlin [--bin=path/to/gradle/binary] [--out=path/to/result] DIR

Options
--bin Location of gradlew binary to use, default: CWD/gradlew
Expand Down Expand Up @@ -57,7 +57,7 @@ describe('socket manifest kotlin', async () => {
Examples

$ socket manifest kotlin .
$ socket manifest kotlin --gradlew=../gradlew ."
$ socket manifest kotlin --bin=../gradlew ."
`
)
expect(`\n ${stderr}`).toMatchInlineSnapshot(`
Expand Down
4 changes: 2 additions & 2 deletions src/commands/manifest/cmd-manifest-kotlin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const config: CliCommandConfig = {
},
help: (command, config) => `
Usage
$ ${command} [--gradle=path/to/gradle/binary] [--out=path/to/result] DIR
$ ${command} [--bin=path/to/gradle/binary] [--out=path/to/result] DIR

Options
${getFlagListOutput(config.flags, 6)}
Expand Down Expand Up @@ -89,7 +89,7 @@ const config: CliCommandConfig = {
Examples

$ ${command} .
$ ${command} --gradlew=../gradlew .
$ ${command} --bin=../gradlew .
`
}

Expand Down
2 changes: 1 addition & 1 deletion src/commands/manifest/cmd-manifest-scala.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('socket manifest scala', async () => {
"[beta] Generate a manifest file (\`pom.xml\`) from Scala's \`build.sbt\` file

Usage
$ socket manifest scala [--sbt=path/to/sbt/binary] [--out=path/to/result] FILE|DIR
$ socket manifest scala [--bin=path/to/sbt/binary] [--out=path/to/result] FILE|DIR

Options
--bin Location of sbt binary to use
Expand Down
2 changes: 1 addition & 1 deletion src/commands/manifest/cmd-manifest-scala.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const config: CliCommandConfig = {
},
help: (command, config) => `
Usage
$ ${command} [--sbt=path/to/sbt/binary] [--out=path/to/result] FILE|DIR
$ ${command} [--bin=path/to/sbt/binary] [--out=path/to/result] FILE|DIR
Options
${getFlagListOutput(config.flags, 6)}
Expand Down