about summary refs log tree commit diff
path: root/doc/languages-frameworks/beam.section.md
diff options
context:
space:
mode:
authorYt <raphael@megzari.com>2024-02-01 18:49:45 +0000
committerGitHub <noreply@github.com>2024-02-01 18:49:45 +0000
commit8530feb642e92d4a010d7b5db9b34923a131992b (patch)
tree0bd6e7e5647374199c4d0f1cd0f6e45a0d21a756 /doc/languages-frameworks/beam.section.md
parentd54418d3e55db974f4faed43c1379376aa82c35f (diff)
parent366496e29e978ab41e9dc33e6192260d362cc099 (diff)
downloadnixlib-8530feb642e92d4a010d7b5db9b34923a131992b.tar
nixlib-8530feb642e92d4a010d7b5db9b34923a131992b.tar.gz
nixlib-8530feb642e92d4a010d7b5db9b34923a131992b.tar.bz2
nixlib-8530feb642e92d4a010d7b5db9b34923a131992b.tar.lz
nixlib-8530feb642e92d4a010d7b5db9b34923a131992b.tar.xz
nixlib-8530feb642e92d4a010d7b5db9b34923a131992b.tar.zst
nixlib-8530feb642e92d4a010d7b5db9b34923a131992b.zip
Merge pull request #233587 from Munksgaard/fix-beam-modules-quotation-marks
beam-modules: Fix missing quotation marks
Diffstat (limited to 'doc/languages-frameworks/beam.section.md')
-rw-r--r--doc/languages-frameworks/beam.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/beam.section.md b/doc/languages-frameworks/beam.section.md
index 1e83d4b93c7c..992149090c63 100644
--- a/doc/languages-frameworks/beam.section.md
+++ b/doc/languages-frameworks/beam.section.md
@@ -216,7 +216,7 @@ in packages.mixRelease {
 Setup will require the following steps:
 
 - Move your secrets to runtime environment variables. For more information refer to the [runtime.exs docs](https://hexdocs.pm/mix/Mix.Tasks.Release.html#module-runtime-configuration). On a fresh Phoenix build that would mean that both `DATABASE_URL` and `SECRET_KEY` need to be moved to `runtime.exs`.
-- `cd assets` and `nix-shell -p node2nix --run node2nix --development` will generate a Nix expression containing your frontend dependencies
+- `cd assets` and `nix-shell -p node2nix --run "node2nix --development"` will generate a Nix expression containing your frontend dependencies
 - commit and push those changes
 - you can now `nix-build .`
 - To run the release, set the `RELEASE_TMP` environment variable to a directory that your program has write access to. It will be used to store the BEAM settings.