Skip to content

Commit c9df4ec

Browse files
authored
get rid of leading arrow in commands so they are copyable (#44)
* get rid of leading arrow in commands * remove leading arrow
1 parent bc386d4 commit c9df4ec

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

docs/src/public/configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,6 @@ Components specified in ``override-components`` must be installed by running
137137

138138
.. code:: shell
139139
140-
> dpm install package
140+
dpm install package
141141
142142
in a package containing the ``daml.yaml`` or ``multi-package.yaml``

docs/src/public/dpm.rst

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Mac/Linux Installation
4848

4949
.. code:: shell
5050
51-
> curl https://get.digitalasset.com/install/install.sh | sh
51+
curl https://get.digitalasset.com/install/install.sh | sh
5252
5353
5454
Windows Installation
@@ -71,40 +71,46 @@ To install the SDK version specified in the daml.yaml, run:
7171

7272
.. code:: shell
7373
74-
> dpm install package
74+
dpm install package
7575
7676
To install a specific SDK version, for example version ``3.4.9``, run:
7777

7878
.. code:: shell
7979
80-
> dpm install 3.4.9
80+
dpm install 3.4.9
8181
8282
To see the active SDK version
8383

8484
.. code:: shell
8585
86-
> dpm version --active
87-
3.4.0-snapshot.20251002.1372.4055ddd
86+
dpm version --active
87+
88+
.. code:: shell
89+
90+
3.4.0-snapshot.20251006.1451.85eca5a
8891
8992
To list the installed SDK versions, including the currently active one (marked with `*`):
9093

9194
.. code:: shell
9295
93-
> dpm version
96+
dpm version
97+
98+
.. code:: shell
99+
94100
3.4.0-snapshot.20251003.1412.3fe167f
95101
* 3.4.0-snapshot.20251006.1451.85eca5a
96102
97103
To additionally list all the SDK versions that can be installed, as well as the installed versions:
98104

99105
.. code:: shell
100106
101-
> dpm version --all
107+
dpm version --all
102108
103109
To get the list in a machine readable format:
104110

105111
.. code:: shell
106112
107-
> dpm version --all -o json
113+
dpm version --all -o json
108114
109115
.. code:: json
110116
@@ -135,7 +141,7 @@ To install unstable SDKs you need to :ref:`configure dpm <dpm-configuration>` to
135141

136142
.. code:: shell
137143
138-
> dpm install <unstable SDK version>
144+
dpm install <unstable SDK version>
139145
140146
141147
.. _dpm-operate:

0 commit comments

Comments
 (0)