Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
download-sdk.mjs 1.23 KB
Copy Edit Raw Blame History
/*
* Copyright (c) 2024 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import * as fs from "node:fs"
import { execSync } from "node:child_process"
const dir = "./interface_sdk-js"
if (fs.existsSync(dir)) {
//execSync(`cd ${dir} && git pull`)
} else {
console.log("Downloading sdk")
execSync("git clone --depth=1 https://gitee.com/openharmony/interface_sdk-js.git")
}
let sdk = "./sdk"
let components = "./interface_sdk-js/api/\@internal/component/ets"
if (!fs.existsSync(sdk)) {
fs.mkdirSync(sdk)
try {
fs.symlinkSync("." + components, sdk + "/component")
} catch (e) {
console.log("Symlink failed, try to copy")
fs.cpSync(components, sdk + "/component", { recursive: true })
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化