From 872cfac57ceb831914f7bf2db35da6adf66c9dbb Mon Sep 17 00:00:00 2001 From: Drew Short Date: Sat, 13 Jan 2018 04:39:22 -0600 Subject: [PATCH] Making the temp SPM force install SPM * This allows for bootstrap to replace the existing version of SPM with the bootstrapped loader --- src/bootstrap.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap.lua b/src/bootstrap.lua index d0f1894..20c303c 100644 --- a/src/bootstrap.lua +++ b/src/bootstrap.lua @@ -19,7 +19,7 @@ wget("-q", downloadSrc, saveLocation) local spm = loadfile(saveLocation) print("Installing SPM Locally") -spm("install", "spm") +spm("install", "-f", "spm") print("Removing Temporary SPM") fs.remove(saveLocation)