Skip to content

Commit 0159440

Browse files
author
Adam Morris
authored
Fix typos in bundle-app help message (#641)
* fix typos * update changelog
1 parent b6a6352 commit 0159440

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Bugfixes:
1515

1616
Other improvements:
1717
- Deps: upgrade `rio` to `0.1.13.0` (#616)
18+
- Fix typos in `spago bundle-app` help message
1819

1920
## [0.15.2] - 2020-04-15
2021

src/Spago/CLI.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ parser = do
119119
in CLI.optional $ CLI.opt wrap "global-cache" 'c' "Configure the global caching behaviour: skip it with `skip` or force update with `update`"
120120

121121
beforeCommands = many $ CLI.opt Just "before" 'b' "Commands to run before a build."
122-
thenCommands = many $ CLI.opt Just "then" 't' "Commands to run following a successfull build."
123-
elseCommands = many $ CLI.opt Just "else" 'e' "Commands to run following an unsuccessfull build."
122+
thenCommands = many $ CLI.opt Just "then" 't' "Commands to run following a successful build."
123+
elseCommands = many $ CLI.opt Just "else" 'e' "Commands to run following an unsuccessful build."
124124
versionBump = CLI.arg Spago.Version.parseVersionBump "bump" "How to bump the version. Acceptable values: 'major', 'minor', 'patch', or a version (e.g. 'v1.2.3')."
125125

126126
quiet = CLI.switch "quiet" 'q' "Suppress all spago logging"

0 commit comments

Comments
 (0)