We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
By default, /usr/sbin is not on PATH for non-root users in Debian sid.
/usr/sbin
PATH
sid
So, binaryExists("update-ca-certificates") returns false at: https://github.com/FiloSottile/mkcert/blob/master/truststore_linux.go#L49 and mkcert fails to install in the system store (Installing to the system store is not yet supported on this Linux).
binaryExists("update-ca-certificates")
false
mkcert
Installing to the system store is not yet supported on this Linux
Simply running
PATH=$PATH:/usr/sbin mkcert -install
solves the issue, but it would be nice if mkcert could temporarily add /usr/sbin to PATH or search in it explicitly.
The text was updated successfully, but these errors were encountered:
343aec2
This is even better. Thanks!
Sorry, something went wrong.
No branches or pull requests
By default,
/usr/sbin
is not onPATH
for non-root users in Debiansid
.So,
binaryExists("update-ca-certificates")
returnsfalse
at:https://github.com/FiloSottile/mkcert/blob/master/truststore_linux.go#L49
and
mkcert
fails to install in the system store (Installing to the system store is not yet supported on this Linux
).Simply running
solves the issue, but it would be nice if
mkcert
could temporarily add/usr/sbin
toPATH
or search in it explicitly.The text was updated successfully, but these errors were encountered: