chore(server): remove useless log (#5620)

This commit is contained in:
liuyi 2024-01-18 03:19:20 +00:00
parent d9324286d4
commit f419867437
No known key found for this signature in database
GPG Key ID: 56709255DC7EC728

View File

@ -13,10 +13,8 @@ import {
const configDir = join(fileURLToPath(import.meta.url), '../config');
async function loadRemote(remoteDir: string, file: string) {
console.log(remoteDir, configDir);
const filePath = join(configDir, file);
if (configDir !== remoteDir) {
console.log('cp remote file');
cpSync(join(remoteDir, file), filePath, {
force: true,
});