Skip to content

Commit

Permalink
Removed cssextract from releases (closes #77)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgaskin committed Sep 24, 2020
1 parent 47f94f5 commit 5b6c29f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions scripts/build/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)")
Expand Down

0 comments on commit 5b6c29f

Please sign in to comment.