Skip to content

Commit

Permalink
Add Whitespace After Running (#16)
Browse files Browse the repository at this point in the history
Co-authored-by: Harry Bowron <[email protected]>
  • Loading branch information
sjmtan and hbowron authored Dec 7, 2023
1 parent e39126c commit ee822e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/creds/cmd_accounts.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func AccountsCmd(cmd *cobra.Command, args []string) {
func getAccountList() (accountList AccountList, err error) {
accountList, err = readAccountsFile(accountsFile)
if err != nil {
log.Print("unable to read cached file, calling substrate...")
log.Print("unable to read cached accounts file, calling substrate...")
accountList, err = refreshAccounts(accountsFile)
}
return
Expand Down
2 changes: 1 addition & 1 deletion internal/creds/credentials.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func getCredentials(role RoleData) (creds Credentials, err error) {
ensureAWSEnvSet()
cmd = fmt.Sprintf("substrate assume-role -environment %s -domain %s -quality %s -role %s -format json", role.Environment, role.Domain, role.Quality, role.Role)
}
log.Print("running", cmd)
log.Print("running: ", cmd)
byteValue, err := script.NewPipe().WithStderr(os.Stderr).Exec(cmd).Bytes()
if err != nil {
return
Expand Down

0 comments on commit ee822e8

Please sign in to comment.