Skip to content

Commit

Permalink
command: Fix help text for ob deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
3noch committed Mar 12, 2020
1 parent 0ecf923 commit b14bbe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/command/src/Obelisk/Command.hs
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ deployCommand cfg = hsubparser $ mconcat

deployInitOpts :: Parser DeployInitOpts
deployInitOpts = DeployInitOpts
<$> strArgument (action "directory" <> metavar "DEPLOYDIR" <> help "Path to a directory that it will create")
<*> strOption (long "ssh-key" <> action "file" <> metavar "SSHKEY" <> help "Path to an ssh key that it will symlink to")
<$> strArgument (action "directory" <> metavar "DEPLOYDIR" <> help "Path to a directory where the deployment repository will be initialized")
<*> strOption (long "ssh-key" <> action "file" <> metavar "SSHKEY" <> help "Path to an SSH key that will be *copied* to the deployment repository")
<*> some (strOption (long "hostname" <> metavar "HOSTNAME" <> help "hostname of the deployment target"))
<*> strOption (long "route" <> metavar "PUBLICROUTE" <> help "Publicly accessible URL of your app")
<*> strOption (long "admin-email" <> metavar "ADMINEMAIL" <> help "Email address where administrative alerts will be sent")
Expand Down

0 comments on commit b14bbe9

Please sign in to comment.