truststore_linux.go 454 B

12345678910111213141516
  1. // Copyright 2018 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package main
  5. import (
  6. "log"
  7. "path/filepath"
  8. )
  9. func (m *mkcert) installPlatform() {
  10. log.Fatalf("-install is not yet supported on Linux 😣\nYou can manually install the root certificate at %q in the meantime.", filepath.Join(m.CAROOT, rootName))
  11. }
  12. func (m *mkcert) uninstallPlatform() {}