mirror of
https://github.com/timvisee/send.git
synced 2025-10-03 17:49:18 +02:00
10 lines
257 B
JavaScript
10 lines
257 B
JavaScript
const child_process = require('child_process');
|
|
const path = require('path');
|
|
|
|
child_process.execSync('npm run build');
|
|
child_process.execSync(
|
|
`cp -R ${path.resolve(__dirname, '../dist')} ${path.resolve(
|
|
__dirname,
|
|
'app/src/main/assets'
|
|
)}`
|
|
);
|