mediocre-blog/tmp-dev-env.sh

15 lines
270 B
Bash
Raw Normal View History

set -e
test_dir="$(mktemp -d)"
2022-09-13 10:25:45 +00:00
trap "rm -rf $test_dir" EXIT
mkdir -p "$test_dir"/run
mkdir -p "$test_dir"/data
test_cfg="(import ./config.nix) // {
runDir=\"${test_dir}/run\";
dataDir=\"${test_dir}/data\";
}"
nix-shell -A shell --arg config "$test_cfg" "$@"