Skip to content

Commit

Permalink
drop the support for win32 chromium
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmood committed Aug 1, 2023
1 parent 48e06d6 commit 3e992bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/launcher/revision.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
package launcher

// RevisionDefault for chromium
const RevisionDefault = 1131003
const RevisionDefault = 1131657

// RevisionPlaywright for arm linux
const RevisionPlaywright = 1067
const RevisionPlaywright = 1071
5 changes: 5 additions & 0 deletions lib/launcher/revision/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ func main() {

revLists := [][]int{}
for _, os := range list {
// skip win32
if os == "Win" {
continue
}

revList := []int{}
for _, s := range getList(mirror + os + "/") {
rev, err := strconv.ParseInt(s, 10, 32)
Expand Down

0 comments on commit 3e992bd

Please sign in to comment.