idlize
/
download-sdk.mjs
11 строк · 264.0 Байт
1import * as fs from "node:fs"2import { execSync } from "node:child_process"3
4const dir = "./interface_sdk-js"5
6if (fs.existsSync(dir)) {7process.exit(0)8}
9
10console.log("Downloading sdk")11execSync("git clone https://gitee.com/openharmony/interface_sdk-js.git")12