Parcourir la source

Fix "%s is up to date -- skipping" message formatting

Giftpflanze il y a 4 ans
Parent
commit
fff9d74764
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      install.go

+ 1 - 1
install.go

@@ -1070,7 +1070,7 @@ func buildInstallPkgbuilds(
 					return errors.New(gotext.Get("error making: %s", err))
 				}
 
-				fmt.Fprintln(os.Stdout, gotext.Get("%s is up to date -- skipping"), cyan(pkg+"-"+pkgVersion))
+				fmt.Fprintln(os.Stdout, gotext.Get("%s is up to date -- skipping", cyan(pkg+"-"+pkgVersion)))
 				continue
 			}
 		}