mirror of
https://github.com/putyy/res-downloader.git
synced 2026-01-12 22:34:56 +08:00
7 lines
256 B
TypeScript
7 lines
256 B
TypeScript
const fs = require('fs');
|
|
const path = require('path');
|
|
const currentDir = process.cwd();
|
|
|
|
// 移动文件
|
|
fs.copyFile(currentDir + '/override/hoxy/lib/cycle.js', currentDir + '/node_modules/hoxy/lib/cycle.js', fs.constants.COPYFILE_FICLONE, (err) => {
|
|
}); |