Skip to content

Commit

Permalink
fixing armv8l (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mzack9999 authored Oct 11, 2023
1 parent b741916 commit 7658de1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ require (
github.com/Masterminds/semver/v3 v3.2.1
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d
github.com/charmbracelet/glamour v0.6.0
github.com/denisbrodbeck/machineid v1.0.1
github.com/google/go-github/v30 v30.1.0
github.com/hdm/jarm-go v0.0.7
github.com/kljensen/snowball v0.8.0
Expand Down Expand Up @@ -33,7 +34,6 @@ require (
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/alecthomas/chroma v0.10.0 // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/denisbrodbeck/machineid v1.0.1 // indirect
github.com/dlclark/regexp2 v1.8.1 // indirect
github.com/dsnet/compress v0.0.1 // indirect
github.com/fatih/color v1.15.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion permission/permission_linux.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build linux && !(armv7l || armv8l)

package permissionutil

Expand Down
2 changes: 1 addition & 1 deletion permission/permission_other.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build darwin || freebsd || netbsd || openbsd || solaris || android || ios || (linux && armv7l)
//go:build darwin || freebsd || netbsd || openbsd || solaris || android || ios || (linux && armv7l) || (linux && armv8l)

package permissionutil

Expand Down

0 comments on commit 7658de1

Please sign in to comment.