Fixed urls.

This commit is contained in:
Andrew Lalis 2022-12-17 16:39:59 +01:00
parent 2b8874ba63
commit 37f21d5d0c
1 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
--[[
Installation script for installing all libraries.
Run `wget run https://github.com/andrewlalis/movescript/blob/main/install.lua`
Run `wget run https://raw.githubusercontent.com/andrewlalis/movescript/main/install.lua`
to run the installer on your device.
]]--
BASE_URL = "https://github.com/andrewlalis/movescript/blob/main"
BASE_URL = "https://raw.githubusercontent.com/andrewlalis/movescript/main/"
SCRIPTS = {
"movescript.lua",
@ -15,7 +15,7 @@ SCRIPTS = {
-- Create a local executable to re-install, instead of having to run this file via wget.
local f = io.open("install-movescript.lua", "w")
for _, script in pairs(SCRIPTS) do
url = BASE_URL .. "/" .. script
url = BASE_URL .. script
cmd = "wget " .. url .. " " .. script
shell.run(cmd)
f:write("shell.run(\"" .. cmd .. "\")")