28 lines
697 B
JavaScript
28 lines
697 B
JavaScript
class test {
|
|
static pkg_name = "test"
|
|
static version = "0.0.1"
|
|
static description = "Testing the new manifest v2 on RS-Relic"
|
|
static license = "unlicensed"
|
|
|
|
static useLib = ["path", "open"]
|
|
|
|
static git_remote = "https://git.ragestudio.net/srgooglo/Relic-ManifestV2-test"
|
|
|
|
installSteps = [
|
|
{
|
|
type: "git_clone",
|
|
url: test.git_remote,
|
|
}
|
|
]
|
|
|
|
async execute() {
|
|
const target = Lib.path.resolve(install_path, "./data/music.mp3")
|
|
|
|
Lib.open.spawn(target)
|
|
}
|
|
|
|
async initialize() {
|
|
Log.info("Initializing...")
|
|
Log.info(`Im am running on a host ${os_string} [${arch}] [${install_path}]`)
|
|
}
|
|
} |