summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2021-02-01 21:34:27 -0700
committerBrian Picciano <mediocregopher@gmail.com>2021-02-01 21:34:27 -0700
commit90b897dbbc014ab11f77566c0a7901a9db42c272 (patch)
treef1a7b9edc2d3bfa202b52754c0947d9806858e85 /Makefile
parent6286b3d8ec6ae215c98e8f39a5959cd4fb93d129 (diff)
dramatically simplify project dependencies by specifying specific jekyll and plugin versions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b68b3aa..150bf91 100644
--- a/Makefile
+++ b/Makefile
@@ -11,5 +11,8 @@ clean:
serve:
nix-shell -A serve
+lock:
+ nix-shell -p bundler -p bundix --run 'bundler lock; bundix; rm -rf .bundle vendor'
+
update:
- nix-shell -p bundler --run 'bundler update; bundler lock; bundix; rm -rf .bundle vendor'
+ nix-shell -p bundler -p bundix --run 'bundler update; bundler lock; bundix; rm -rf .bundle vendor'