diff options
author | EuAndreh <eu@euandre.org> | 2025-04-16 11:20:43 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-04-16 11:20:43 -0300 |
commit | d36c2e459a74ec67e523539eb98b78b95b01432a (patch) | |
tree | a7099fbfbdab6a21f59b6efe095bffb40ceae646 /src/content/pastebins/2020/11/27 | |
parent | src/content/style.css: Show header on hover only (diff) | |
download | euandre.org-d36c2e459a74ec67e523539eb98b78b95b01432a.tar.gz euandre.org-d36c2e459a74ec67e523539eb98b78b95b01432a.tar.xz |
src/content/: Normalize [source,$lang] code blocks
Diffstat (limited to 'src/content/pastebins/2020/11/27')
-rw-r--r-- | src/content/pastebins/2020/11/27/guix-build-local.adoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/pastebins/2020/11/27/guix-build-local.adoc b/src/content/pastebins/2020/11/27/guix-build-local.adoc index 6fe5089..1a18d4b 100644 --- a/src/content/pastebins/2020/11/27/guix-build-local.adoc +++ b/src/content/pastebins/2020/11/27/guix-build-local.adoc @@ -36,7 +36,7 @@ Inside a file named `build.scm`: A plain build command didn't work: -[source,shell] +[source,sh] ---- $ guix build -L. my-hello guix build: error: my-hello : paquet inconnu @@ -44,7 +44,7 @@ guix build: error: my-hello : paquet inconnu But with an eval expression it did: -[source,shell] +[source,sh] ---- $ guix build -L. -e '(@ (build) my-hello)' # works |