Skip to content

Commit

Permalink
Change /libs to /lib
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaKnijn committed Nov 15, 2022
1 parent a9debff commit c4e36a4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions install.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ while true do
shell.run("wget " .. url)

print("Downloading libraries right now")
shell.run("wget " .. baseRepoURL .. "/libs/semver.lua /libs/semver.lua")
shell.run("wget " .. baseRepoURL .. "/libs/youcubeapi.lua /libs/youcubeapi.lua")
shell.run("wget " .. baseRepoURL .. "/libs/basalt.lua /libs/basalt.lua")
shell.run("wget " .. baseRepoURL .. "/lib/semver.lua /lib/semver.lua")
shell.run("wget " .. baseRepoURL .. "/lib/youcubeapi.lua /lib/youcubeapi.lua")
shell.run("wget " .. baseRepoURL .. "/lib/basalt.lua /lib/basalt.lua")
print("Done!!")
return
end
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions musicify.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ local musicify = {}
local speaker = peripheral.find("speaker")
local serverChannel = 2561
local modem = peripheral.find("modem")
local v = require("/libs/semver")
local YouCubeAPI = require("/libs/youcubeapi")
local v = require("/lib/semver")
local YouCubeAPI = require("/lib/youcubeapi")

if not speaker then -- Check if there is a speaker
error("Speaker not found, refer to the wiki on how to set up Musicify",0)
Expand Down Expand Up @@ -171,7 +171,7 @@ musicify.youcube = function (arguments)
end

musicify.gui = function (arguments)
local basalt = require("libs/basalt")
local basalt = require("lib/basalt")
gui = true
if not basalt then
error("Basalt wasn't found or was installed incorrectly")
Expand Down

0 comments on commit c4e36a4

Please sign in to comment.