diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 21:11:31 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 21:11:31 +0200 |
commit | a7a3e1e0de9d2ed94b655911e9aaf1b89e8990a5 (patch) | |
tree | 0026ecbff1bd457303253ef3b659ffbc75cbb679 | |
parent | 3a6f157ba8974f68de7e436e8ecbce1dacf2a439 (diff) |
fix(install): remove check for bootstrapped
-rw-r--r-- | fnl/install.fnl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fnl/install.fnl b/fnl/install.fnl index cb5a588..f6d741f 100644 --- a/fnl/install.fnl +++ b/fnl/install.fnl @@ -7,9 +7,6 @@ (defn- install-plugins [plgs] (packer.startup (fn [use] (each [plugin opts (pairs plgs)] - (use (a.assoc opts 1 plugin))))) - (if is_bootstrapped? - ((require :config.packer) .sync))) + (use (a.assoc opts 1 plugin)))))) -(local is_bootstrapped (bootstrap.run)) (install-plugins plugins.plugins) |