1
0
mirror of https://gitea.com/gitea/act synced 2026-05-01 01:27:48 +02: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

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)