Skip to content

Commit 62a1f08

Browse files
committed
app/scripts: start: Remove execSync import
1 parent fd68242 commit 62a1f08

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app/scripts/start.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@
44
*
55
* Assumes being run from within the app/ folder
66
*/
7-
const { spawn } = require('child_process');
7+
const { spawn, spawnSync } = require('child_process');
88
const { statSync, existsSync } = require('fs');
99
const { join } = require('path');
10-
const { execSync } = require('child_process');
11-
const { spawnSync } = require('child_process');
1210

1311
/**
1412
* @returns the last commit date of the backend/ in milliseconds since epoch,

0 commit comments

Comments
 (0)