Skip to content

Commit

Permalink
Fix whitespace for help message
Browse files Browse the repository at this point in the history
  • Loading branch information
ebroberson committed Jul 31, 2023
1 parent 57777d8 commit e5979ac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions acceptance/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ var _ = Describe("acceptance", func() {
Expect(err).NotTo(HaveOccurred())
Eventually(session).Should(gexec.Exit(0))
Expect(string(session.Out.Contents())).To(ContainSubstring(`
--input-tile, -i path to input tile (example: /path/to/input.pivotal)
--output-tile, -o path to output tile (example: /path/to/output.pivotal)
--input-tile, -i path to input tile (example: /path/to/input.pivotal)
--output-tile, -o path to output tile (example: /path/to/output.pivotal)
--preserve-extracted, -p preserve the files created during the tile extraction process (useful for debugging)
--registry, -r path to docker registry (example: /path/to/registry, default: "https://registry.hub.docker.com")
--help, -h prints this usage information`))
--registry, -r path to docker registry (example: /path/to/registry, default: "https://registry.hub.docker.com")
--help, -h prints this usage information`))
})
})
})
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import (
const usageText = `winfs-injector injects the Windows 2016 root file system into the Windows 2016 Runtime Tile.
Usage: winfs-injector
--input-tile, -i path to input tile (example: /path/to/input.pivotal)
--output-tile, -o path to output tile (example: /path/to/output.pivotal)
--input-tile, -i path to input tile (example: /path/to/input.pivotal)
--output-tile, -o path to output tile (example: /path/to/output.pivotal)
--preserve-extracted, -p preserve the files created during the tile extraction process (useful for debugging)
--registry, -r path to docker registry (example: /path/to/registry, default: "https://registry.hub.docker.com")
--help, -h prints this usage information
--registry, -r path to docker registry (example: /path/to/registry, default: "https://registry.hub.docker.com")
--help, -h prints this usage information
`

func main() {
Expand Down

0 comments on commit e5979ac

Please sign in to comment.