Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add --path flag #53

Merged
merged 8 commits into from
Nov 21, 2019
Merged
Changes from 1 commit
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
Prev Previous commit
Add better "directory" argument description
  • Loading branch information
ordepdev committed Nov 19, 2019
commit 11ac7383d4fedf40ff31ea21277ec5dfc89bb985
16 changes: 8 additions & 8 deletions corral/main.pony
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ actor Main
[
OptionSpec.string(
"directory",
"The path where corral.json and dep-lock.json will be created."
"The directory where corral.json and dep-lock.json will be created."
where short' = 'p',
default' = "")
]
Expand All @@ -56,7 +56,7 @@ actor Main
[
OptionSpec.string(
"directory",
"The path where both corral.json and dep-lock.json live."
"The directory where both corral.json and dep-lock.json live."
where short' = 'p',
default' = "")
])?
Expand All @@ -76,7 +76,7 @@ actor Main
default' = "")
OptionSpec.string(
"directory",
"The path where both corral.json and dep-lock.json live."
"The directory where both corral.json and dep-lock.json live."
where short' = 'p',
default' = "")
],
Expand All @@ -89,7 +89,7 @@ actor Main
[
OptionSpec.string(
"directory",
"The path where both corral.json and dep-lock.json live."
"The directory where both corral.json and dep-lock.json live."
where short' = 'p',
default' = "")
])?
Expand All @@ -99,7 +99,7 @@ actor Main
[
OptionSpec.string(
"directory",
"The path where both corral.json and dep-lock.json live."
"The directory where both corral.json and dep-lock.json live."
where short' = 'p',
default' = "")
]
Expand All @@ -121,7 +121,7 @@ actor Main
default' = false)
OptionSpec.string(
"directory",
"The path where both corral.json and dep-lock.json live."
"The directory where both corral.json and dep-lock.json live."
where short' = 'p',
default' = "")
])?
Expand All @@ -132,7 +132,7 @@ actor Main
[
OptionSpec.string(
"directory",
"The path where both corral.json and dep-lock.json live."
"The directory where both corral.json and dep-lock.json live."
where short' = 'p',
default' = "")
])?
Expand All @@ -142,7 +142,7 @@ actor Main
[
OptionSpec.string(
"directory",
"The path where both corral.json and dep-lock.json live."
"The directory where both corral.json and dep-lock.json live."
where short' = 'p',
default' = "")
])?
Expand Down