diff --git a/bin/cml/runner/start.js b/bin/cml/runner/launch.js similarity index 99% rename from bin/cml/runner/start.js rename to bin/cml/runner/launch.js index 258b69bd6..669db00b2 100755 --- a/bin/cml/runner/start.js +++ b/bin/cml/runner/launch.js @@ -414,7 +414,7 @@ const run = async (opts) => { else await runLocal(opts); }; -exports.command = 'start'; +exports.command = 'launch'; exports.description = 'Launch and register a self-hosted runner'; exports.handler = async (opts) => { diff --git a/bin/cml/runner/start.test.js b/bin/cml/runner/launch.test.js similarity index 100% rename from bin/cml/runner/start.test.js rename to bin/cml/runner/launch.test.js diff --git a/bin/cml/tensorboard/start.js b/bin/cml/tensorboard/connect.js similarity index 97% rename from bin/cml/tensorboard/start.js rename to bin/cml/tensorboard/connect.js index 0bc3877e4..809d50809 100644 --- a/bin/cml/tensorboard/start.js +++ b/bin/cml/tensorboard/connect.js @@ -72,8 +72,8 @@ const launchAndWaitLink = async (opts = {}) => { }; exports.tbLink = tbLink; -exports.command = 'start'; -exports.description = 'Start the tensorboard agent and get a link'; +exports.command = 'connect'; +exports.description = 'Connect to tensorboard.dev and get a link'; exports.handler = async (opts) => { const { file, credentials, name, description } = opts; diff --git a/bin/cml/tensorboard/start.test.js b/bin/cml/tensorboard/connect.test.js similarity index 100% rename from bin/cml/tensorboard/start.test.js rename to bin/cml/tensorboard/connect.test.js diff --git a/bin/cml/workflow/rerun.js b/bin/cml/workflow/rerun.js index 4cd4601cf..18c5f0936 100644 --- a/bin/cml/workflow/rerun.js +++ b/bin/cml/workflow/rerun.js @@ -1,7 +1,7 @@ const kebabcaseKeys = require('kebabcase-keys'); exports.command = 'rerun'; -exports.description = 'Restart a workflow given the jobId or workflowId'; +exports.description = 'Rerun a workflow given the jobId or workflowId'; exports.handler = async (opts) => { const { cml } = opts;