add trailing newline when unsetting env in fish

Signed-off-by: Fabian Ruff <fabian@progra.de>
This commit is contained in:
Fabian Ruff 2015-02-26 14:03:47 +01:00
parent 40a3124f8d
commit 722a7cd28a
1 changed files with 1 additions and 1 deletions

View File

@ -473,7 +473,7 @@ func cmdEnv(c *cli.Context) {
if c.Bool("unset") {
switch userShell {
case "fish":
fmt.Printf("set -e DOCKER_TLS_VERIFY\nset -e DOCKER_CERT_PATH\nset -e DOCKER_HOST")
fmt.Printf("set -e DOCKER_TLS_VERIFY\nset -e DOCKER_CERT_PATH\nset -e DOCKER_HOST\n")
default:
fmt.Println("unset DOCKER_TLS_VERIFY DOCKER_CERT_PATH DOCKER_HOST")
}