From 5b6c29f05b0fa33845aa4f88178675413f7625d3 Mon Sep 17 00:00:00 2001 From: Patrick Gaskin Date: Thu, 24 Sep 2020 17:34:24 -0400 Subject: [PATCH] Removed cssextract from releases (closes #77) --- scripts/README.md | 2 +- scripts/build/build.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/README.md b/scripts/README.md index 8287314..687b25e 100644 --- a/scripts/README.md +++ b/scripts/README.md @@ -13,7 +13,7 @@ Options: -dldir string directory under basedir for kobopatch download (default "dl") -kpbin string - kobopatch binaries to download (default "kobopatch-darwin-64bit,cssextract-darwin-64bit,kobopatch-linux-32bit,cssextract-linux-32bit,kobopatch-linux-64bit,cssextract-linux-64bit,koboptch-windows.exe,cssextract-windows.exe") + kobopatch binaries to download (default "kobopatch-darwin-64bit,kobopatch-linux-32bit,kobopatch-linux-64bit,koboptch-windows.exe") -kprepo string github repo for kobopatch (default "pgaskin/kobopatch") -kpver string diff --git a/scripts/build/build.go b/scripts/build/build.go index 84455e9..aac942b 100644 --- a/scripts/build/build.go +++ b/scripts/build/build.go @@ -30,10 +30,10 @@ func main() { kprepo := flag.String("kprepo", "pgaskin/kobopatch", "github repo for kobopatch") kpver := flag.String("kpver", "v0.15.0", "kobopatch version") kpbin := flag.String("kpbin", strings.Join([]string{ - "kobopatch-darwin-64bit", "cssextract-darwin-64bit", - "kobopatch-linux-32bit", "cssextract-linux-32bit", - "kobopatch-linux-64bit", "cssextract-linux-64bit", - "koboptch-windows.exe", "cssextract-windows.exe", + "kobopatch-darwin-64bit", + "kobopatch-linux-32bit", + "kobopatch-linux-64bit", + "koboptch-windows.exe", }, ","), "kobopatch binaries to download") skipbuild := flag.Bool("skipbuild", false, "don't actually build the patches") skipdl := flag.Bool("skipdl", false, "don't download kobopatch (use this for parallel builds)")