| Server IP : 138.197.176.125 / Your IP : 216.73.217.54 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/lib/node_modules/pm2/ |
Upload File : |
const fs = require('fs');
const path = require('path');
// Determine platform
const isWindows = process.platform === 'win32';
if (!isWindows)
process.exit(0)
const sourceFile = 'bin/pm2-windows';
const destinationFile = 'bin/pm2';
// Resolve file paths
const sourcePath = path.resolve(__dirname, sourceFile);
const destinationPath = path.resolve(__dirname, destinationFile);
// Copy the appropriate file based on the platform
fs.copyFile(sourcePath, destinationPath, (err) => {
if (err) {
console.error(`Error copying file from ${sourcePath} to ${destinationPath}:`, err);
process.exit(1);
}
console.log(`Successfully copied ${sourceFile} to ${destinationFile}`);
});