summaryrefslogtreecommitdiff
path: root/srv-dev-env.sh
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2022-05-14 21:28:33 -0600
committerBrian Picciano <mediocregopher@gmail.com>2022-05-14 21:28:33 -0600
commitaf08122a253916c9f7d923b6a0197db1cbbf536e (patch)
tree7c20635d8e1475202cd58e394d1df58632c9367c /srv-dev-env.sh
parente24dd6d630cf558c616c1252bacfff6d343b4194 (diff)
Add static serve back to dev-shell
Diffstat (limited to 'srv-dev-env.sh')
-rw-r--r--srv-dev-env.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/srv-dev-env.sh b/srv-dev-env.sh
index 2df9918..9d2ee87 100644
--- a/srv-dev-env.sh
+++ b/srv-dev-env.sh
@@ -11,7 +11,7 @@ test_cfg="(import ./config.nix) // {
entrypoint=$(nix-build --no-out-link -A entrypoint \
--arg baseConfig "$test_cfg" \
- --arg skipServices '["srv"]')
+ --arg baseSkipServices '["srv"]')
$entrypoint &
trap "kill $!; wait; rm -rf $test_dir" EXIT