move rclone to lib/rclone

This commit is contained in:
FTCHD
2025-01-27 18:21:06 +02:00
parent 6461b8445a
commit 4a0d036f4d
11 changed files with 14 additions and 11 deletions
+4 -1
View File
@@ -40,7 +40,10 @@ async function buildExternal() {
console.log('Cleaning up...')
await Promise.all([
// Remove lib/*.js files
execSync('rm -rf ./lib/**.js', { stdio: 'inherit', cwd: projectRoot }),
execSync('rm -rf ./lib/**/**.js && rm -rf ./lib/**.js', {
stdio: 'inherit',
cwd: projectRoot,
}),
// Remove main.js
unlink(join(projectRoot, 'main.js')).catch(() => {}), // Ignore if file doesn't exist
])