diff options
author | EuAndreh <eu@euandre.org> | 2021-01-01 21:18:31 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-01 21:18:31 -0300 |
commit | 8c351da46ea1202c90db9e591950457ff30177c1 (patch) | |
tree | 6bceb4f290a31ec13b1a70a20964fd44b8acad10 | |
parent | Update layout translations (diff) | |
download | euandre.org-8c351da46ea1202c90db9e591950457ff30177c1.tar.gz euandre.org-8c351da46ea1202c90db9e591950457ff30177c1.tar.xz |
default.nix: Add music flag
Diffstat (limited to '')
-rw-r--r-- | default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/default.nix b/default.nix index 79c104a..fa15455 100644 --- a/default.nix +++ b/default.nix @@ -64,14 +64,14 @@ in rec { echo 'Starting a live server with:' echo ' jekyll serve --future --livereload --trace' echo 'Server with feature flags:' - echo ' jekyll serve --future --livereload --trace -c $(cfg podcast screencast direct-video)' + echo ' jekyll serve --future --livereload --trace -c $(cfg podcast screencast direct-video music)' export JEKYLL_ENV=production cfg() { T="$(mktemp --suffix .yml)" cp _config.yml "$T" - printf 'flags:' >> "$T" + printf '\nflags:' >> "$T" for flag in "$@"; do printf '\n %s: true' "$flag" >> "$T" done |