chore(plugins/community/splatoon): upgrade s3si to v2 (#1401) [skip ci]

This commit is contained in:
Simon Lecoq
2023-03-13 19:40:44 -04:00
committed by GitHub
parent b85fa234dd
commit 013b2cb399
2 changed files with 420 additions and 318 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -31,15 +31,16 @@ const args = [
'--exporter=none' '--exporter=none'
] ]
try { try {
await Deno.spawn("deno", { const command = new Deno.Command("deno", {
args, args,
stdin: "inherit", stdin: "inherit",
stdout: "inherit", stdout: "inherit",
stderr: "inherit", stderr: "inherit",
windowsRawArguments:true windowsRawArguments:true
}) })
await command.output()
} }
catch {} catch (error) { console.log(error) }
//Extract profile.json and print instructions //Extract profile.json and print instructions
try { try {