Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.loadAPI("json")
- local args = {...}
- str2 = http.get("https://raw.githubusercontent.com/Timasbro/creatopico_os/main/apps.json").readAll()
- obj2 = json.decode(str2)
- local object = json.decodeFromFile("/apps.json")
- local name = args[1]
- local ver = "latest"
- for key,value in pairs( obj2 ) do
- if (key == name) then
- ver = value
- end
- end
- object[name] = "update"
- prettystring = json.encodePretty(object)
- local file = fs.open("apps.json","w")
- file.write(prettystring)
- file.close()
- print("Now, update the app!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement