about summary refs log tree commit diff
path: root/doc/languages-frameworks/beam.section.md
diff options
context:
space:
mode:
authorPhilip Munksgaard <philip@munksgaard.me>2023-05-23 11:58:17 +0200
committerPhilip Munksgaard <philip@munksgaard.me>2023-05-23 11:58:17 +0200
commit366496e29e978ab41e9dc33e6192260d362cc099 (patch)
tree27bbe7040bb5056e020303ff81f0d0ac85674109 /doc/languages-frameworks/beam.section.md
parent7c5d126b21400c74614801ccefe607f4aa87bad1 (diff)
downloadnixlib-366496e29e978ab41e9dc33e6192260d362cc099.tar
nixlib-366496e29e978ab41e9dc33e6192260d362cc099.tar.gz
nixlib-366496e29e978ab41e9dc33e6192260d362cc099.tar.bz2
nixlib-366496e29e978ab41e9dc33e6192260d362cc099.tar.lz
nixlib-366496e29e978ab41e9dc33e6192260d362cc099.tar.xz
nixlib-366496e29e978ab41e9dc33e6192260d362cc099.tar.zst
nixlib-366496e29e978ab41e9dc33e6192260d362cc099.zip
beam-modules: Fix missing quotation marks
The given command doesn't work without quotation marks around the expression to
be run.
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 4c1650781f05..b84afb6923ac 100644
--- a/doc/languages-frameworks/beam.section.md
+++ b/doc/languages-frameworks/beam.section.md
@@ -198,7 +198,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.