aboutsummaryrefslogtreecommitdiff
path: root/src/server/DashSession/DashSessionAgent.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-04-29 23:00:22 -0400
committerbobzel <zzzman@gmail.com>2024-04-29 23:00:22 -0400
commitf6a741f38a33bdb30b3a1d88215656dcd3d0712d (patch)
treedf88320222c743d26f2b1341c1489671277baec9 /src/server/DashSession/DashSessionAgent.ts
parentab873e90112f2cac204a57a1b405cc241f7e8381 (diff)
eslint fixes.
Diffstat (limited to 'src/server/DashSession/DashSessionAgent.ts')
-rw-r--r--src/server/DashSession/DashSessionAgent.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/DashSession/DashSessionAgent.ts b/src/server/DashSession/DashSessionAgent.ts
index f937c17ad..891316b80 100644
--- a/src/server/DashSession/DashSessionAgent.ts
+++ b/src/server/DashSession/DashSessionAgent.ts
@@ -35,7 +35,7 @@ export class DashSessionAgent extends AppliedSessionAgent {
monitor.addReplCommand('pull', [], () => monitor.exec('git pull'));
monitor.addReplCommand('solr', [/start|stop|index/], this.executeSolrCommand);
monitor.addReplCommand('backup', [], this.backup);
- monitor.addReplCommand('debug', [/\S+\@\S+/], async ([to]) => this.dispatchZippedDebugBackup(to));
+ monitor.addReplCommand('debug', [/\S+@\S+/], async ([to]) => this.dispatchZippedDebugBackup(to));
monitor.on('backup', this.backup);
monitor.on('debug', async ({ to }) => this.dispatchZippedDebugBackup(to));
monitor.on('delete', WebSocket.doDelete);