summaryrefslogtreecommitdiff
path: root/lib/spack/spack/cmd/docs.py
blob: d386fb973197632ff1b0d43c9d1c255b21a5f630 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

import webbrowser

description = "open spack documentation in a web browser"
section = "help"
level = "short"


def docs(parser, args):
    webbrowser.open("https://spack.readthedocs.io")