1
1
mirror of https://github.com/nektos/act.git synced 2024-09-11 12:35:25 +03:00

fix: print line after password prompt (#1014)

fixes https://github.com/nektos/act/issues/979
This commit is contained in:
Ryan 2022-02-25 17:47:49 +01:00 committed by GitHub
parent ff13844b86
commit ad06f5dfb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,6 +26,7 @@ func newSecrets(secretList []string) secrets {
} else {
fmt.Printf("Provide value for '%s': ", secretPairParts[0])
val, err := term.ReadPassword(int(os.Stdin.Fd()))
fmt.Println()
if err != nil {
log.Errorf("failed to read input: %v", err)
os.Exit(1)