Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion init_devcontainer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,7 @@ rm -rf .luatmp

# install luamin
# no sudo for local dev container?
sudo yarn global add https://github.com/cyberbit/luamin
yarn global add https://github.com/cyberbit/luamin

# add yarn global bin to PATH
echo 'export PATH="$PATH:$(yarn global bin)"' >> ~/.bashrc
12 changes: 6 additions & 6 deletions src/telem/bin/install.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- Telem Installer by cyberbit
-- MIT License
-- Version 2024-11-04
-- Version 2025-04-04

local ui = (function ()
-- PrimeUI by JackMacWindows
Expand Down Expand Up @@ -152,7 +152,7 @@ local showReleaseSelector = function ()
ui.textBox(curt(), boxSizing.mainPadding, 2, boxSizing.contentBox, 5, 'Telem Installer - Reading releases...')
ui.borderBox(curt(), boxSizing.mainPadding + 1, 6, boxSizing.borderBox, 8)

local releaseUrl = 'https://get.telem.cc/blob/releases'
local releaseUrl = 'https://telem-get.cyberbit.dev/blob/releases'

local req = httpGetRedirect(releaseUrl)
local jres = textutils.unserialiseJSON(req.readAll())
Expand Down Expand Up @@ -233,7 +233,7 @@ local installActions = {

local fakeTree = {
sha = releaseName,
url = 'https://get.telem.cc/blob/asset/{sha}/{path}',
url = 'https://telem-get.cyberbit.dev/blob/asset/{sha}/{path}',
sources = {
{ path = 'telem', type = 'tree' }
}
Expand Down Expand Up @@ -271,7 +271,7 @@ local installActions = {

local fakeTree = {
sha = releaseName,
url = 'https://get.telem.cc/blob/asset/{sha}/{path}',
url = 'https://telem-get.cyberbit.dev/blob/asset/{sha}/{path}',
sources = {
{ path = 'telem', type = 'tree' }
}
Expand Down Expand Up @@ -308,7 +308,7 @@ local installActions = {
ui.addTask(function ()
currentStep('Step 1 of 2: Modules')

local treeUrl = 'https://get.telem.cc/blob/lib/main'
local treeUrl = 'https://telem-get.cyberbit.dev/blob/lib/main'

local req = httpGetRedirect(treeUrl)
local res = textutils.unserialiseJSON(req.readAll())
Expand All @@ -317,7 +317,7 @@ local installActions = {

currentStep('Step 2 of 2: Vendors')

treeUrl = 'https://get.telem.cc/blob/vendor/main'
treeUrl = 'https://telem-get.cyberbit.dev/blob/vendor/main'

req = httpGetRedirect(treeUrl)
res = textutils.unserialiseJSON(req.readAll())
Expand Down
Loading