diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 20:56:56 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 20:56:56 +0200 |
commit | aa75a843d4a84b3fd23db161914220dd403b8d5b (patch) | |
tree | b9bab69ba8c266af9b2c3edea1184b004fcaf90a /fnl/install.fnl | |
parent | 5e87e7281aab88b8142bf44cd29ded2b7817e753 (diff) |
fix(bootstrap): remove false
Diffstat (limited to 'fnl/install.fnl')
-rw-r--r-- | fnl/install.fnl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fnl/install.fnl b/fnl/install.fnl index 9586948..cb5a588 100644 --- a/fnl/install.fnl +++ b/fnl/install.fnl @@ -8,7 +8,7 @@ (packer.startup (fn [use] (each [plugin opts (pairs plgs)] (use (a.assoc opts 1 plugin))))) - (if (= is_bootstrapped true) + (if is_bootstrapped? ((require :config.packer) .sync))) (local is_bootstrapped (bootstrap.run)) |