Przeglądaj źródła

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

Giftpflanze 4 lat temu
rodzic
commit
fff9d74764
1 zmienionych plików z 1 dodań i 1 usunięć
  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
 			}
 		}