diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2021-02-01 21:34:27 -0700 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2021-02-01 21:34:27 -0700 |
commit | 90b897dbbc014ab11f77566c0a7901a9db42c272 (patch) | |
tree | f1a7b9edc2d3bfa202b52754c0947d9806858e85 /Makefile | |
parent | 6286b3d8ec6ae215c98e8f39a5959cd4fb93d129 (diff) |
dramatically simplify project dependencies by specifying specific jekyll and plugin versions
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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' |