Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typo #3

Merged
merged 1 commit into from
Aug 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common/settings/proxy_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@
if err != nil {
return nil, err
}
err := runAsUser("kwriteconfig5", "--file","kioslaverc", "--group", "'Proxy Settings'", "--key", "Authmode", "0")

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / Debug build (Go 1.20)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / Debug build (Go 1.18)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / Debug build

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / cross (linux-amd64, linux, amd64, v1)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / cross (linux-amd64-v3, linux, amd64, v3)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / cross (linux-386, linux, 386)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / cross (linux-arm64, linux, arm64)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / cross (linux-armv5, linux, arm, 5)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / cross (linux-armv6, linux, arm, 6)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / cross (linux-armv7, linux, arm, 7)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / cross (linux-mips-softfloat, linux, mips, softfloat)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / cross (linux-mips-hardfloat, linux, mips, hardfloat)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / cross (linux-mipsel-softfloat, linux, mipsle, softfloat)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / cross (linux-mipsel-hardfloat, linux, mipsle, hardfloat)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / cross (linux-mips64, linux, mips64)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / cross (linux-mips64el, linux, mips64le)

no new variables on left side of :=

Check failure on line 80 in common/settings/proxy_linux.go

View workflow job for this annotation

GitHub Actions / cross (linux-s390x, linux, s390x)

no new variables on left side of :=
if err != nil {
return nil, err
}
return func() error {
return err := runAsUser("kwriteconfig5", "--file","kioslaverc", "--group", "'Proxy Settings'", "--key", "ProxyType", "0")
return runAsUser("kwriteconfig5", "--file","kioslaverc", "--group", "'Proxy Settings'", "--key", "ProxyType", "0")
}, nil
}
return nil, E.New("unsupported desktop environment")
Expand Down
Loading