From 3930f28d4ee0eb9eeb7d0e8cf9a3edc83c5350e8 Mon Sep 17 00:00:00 2001 From: Jonathan Olson <jonathan.olson@colorado.edu> Date: Wed, 15 Apr 2020 18:09:55 -0600 Subject: [PATCH] Rootdir fix --- js/server/continuous-server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/server/continuous-server.js b/js/server/continuous-server.js index ea8d3fb..84b259d 100644 --- a/js/server/continuous-server.js +++ b/js/server/continuous-server.js @@ -38,7 +38,7 @@ const snapshots = []; let reportJSON = '{}'; // root of your GitHub working copy, relative to the name of the directory that the currently-executing script resides in -const rootDir = path.normalize( __dirname + '/../../' ); // eslint-disable-line no-undef +const rootDir = path.normalize( __dirname + '/../../../' ); // eslint-disable-line no-undef // Gets update with the current status let snapshotStatus = 'Starting up';