Created Scripts (UniStore) (markdown)

Pk11
2020-09-25 16:19:50 -05:00
parent 0b7566e780
commit 5666477eca
+22
@@ -0,0 +1,22 @@
After the `info` section you can have as many scripts as you want for each app, the consist of a name, then an array of functions, for info on functions see under the `Scripts` bullet of the `Scripts` section
```json
"Download Universal-Updater.cia": [
{
"file": "https://github.com/Universal-Team/Universal-Updater/releases/download/v2.5.1/Universal-Updater.cia",
"message": "Downloading Universal-Updater.cia...",
"output": "sdmc:/Universal-Updater.cia",
"type": "downloadFile"
},
{
"file": "/Universal-Updater.cia",
"message": "Installing Universal-Updater.cia...",
"type": "installCia"
},
{
"file": "sdmc:/Universal-Updater.cia",
"message": "Deleting Universal-Updater.cia.",
"type": "deleteFile"
}
]
```