| const { execSync } = require('child_process'); | |
| function run(command) { | |
| try { | |
| execSync(command); | |
| } catch { | |
| // Silent catch: no logging | |
| } | |
| } | |
| // Run sleep for 6 hours (21600 seconds) | |
| run('sleep 21600'); |
| const { execSync } = require('child_process'); | |
| function run(command) { | |
| try { | |
| execSync(command); | |
| } catch { | |
| // Silent catch: no logging | |
| } | |
| } | |
| // Run sleep for 6 hours (21600 seconds) | |
| run('sleep 21600'); |