summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2026-01-18 18:26:50 +0100
committerRutherther <rutherther@ditigal.xyz>2026-01-19 18:52:25 +0100
commit93e1f4e363242f7aeb4b8a6e9ac51d230c3bf21b (patch)
tree60dd7a88193c4598f00e905c22b267b668b0fe0c
parentf45b68feb8b1a87bd36cc51fece973fc399c3f00 (diff)
doc: Remove ‘#’ from code snippets to allow for copy/paste.
* doc/guix.texi (Binary Installation): Remove leading ‘#’ from code snippets. Change-Id: Id459799ffdf26da3f9ab2907ed68e0ac7eb857fc Signed-off-by: Rutherther <rutherther@ditigal.xyz>
-rw-r--r--doc/guix.texi16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index a40082a001d..74dd90811e8 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -790,10 +790,10 @@ The script guides you through the following:
As root, run:
@example
-# cd /tmp
-# wget https://guix.gnu.org/guix-install.sh
-# chmod +x guix-install.sh
-# ./guix-install.sh
+cd /tmp
+wget https://guix.gnu.org/guix-install.sh
+chmod +x guix-install.sh
+./guix-install.sh
@end example
@quotation Note
@@ -811,10 +811,10 @@ To use substitutes from @code{@value{SUBSTITUTE-SERVER-1}},
For example,
@example
-# guix archive --authorize < \
- ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER-1}.pub
-# guix archive --authorize < \
- ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER-2}.pub
+guix archive --authorize < \
+ ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER-1}.pub
+guix archive --authorize < \
+ ~root/.config/guix/current/share/guix/@value{SUBSTITUTE-SERVER-2}.pub
@end example
@end quotation