Skip to content

Commit

Permalink
Consistent color for filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Anema committed Aug 14, 2017
1 parent 0063048 commit 18405d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cmd/download.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func downloadFile(client kit.ThemeClient, filename string) error {
stdOut.Printf(
"[%s] skipping %s",
green(client.Config.Environment),
green(filename),
blue(filename),
)
}
return nil
Expand All @@ -68,7 +68,7 @@ func downloadFile(client kit.ThemeClient, filename string) error {
stdOut.Printf(
"[%s] Successfully wrote %s to disk",
green(client.Config.Environment),
green(filename),
blue(filename),
)
}
return nil
Expand Down
4 changes: 2 additions & 2 deletions cmd/upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func deploy(destructive bool) arbitratedCmd {
"[%s] skipping %s of %s",
green(client.Config.Environment),
yellow(action.event),
green(action.asset.Key),
blue(action.asset.Key),
)
}

Expand Down Expand Up @@ -100,7 +100,7 @@ func perform(client kit.ThemeClient, asset kit.Asset, event kit.EventType, bar *
"[%s] Successfully performed %s on file %s from %s",
green(client.Config.Environment),
green(resp.EventType),
green(resp.Asset.Key),
blue(resp.Asset.Key),
yellow(resp.Host),
)
}
Expand Down

0 comments on commit 18405d3

Please sign in to comment.