From 2ef5b36a58cc0c9171761d0371e3eb1ce5601276 Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Fri, 4 Jun 2021 14:04:26 +0530 Subject: [PATCH] short flags for options added --- libs/remixd/src/bin/remixd.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/remixd/src/bin/remixd.ts b/libs/remixd/src/bin/remixd.ts index 6b80867843..e783a927f0 100644 --- a/libs/remixd/src/bin/remixd.ts +++ b/libs/remixd/src/bin/remixd.ts @@ -58,9 +58,9 @@ function errorHandler (error: any, service: string) { program .usage('-s ') .description('Provide a two-way connection between the local computer and Remix IDE') - .option('--remix-ide ', 'URL of remix instance allowed to connect to this web sockect connection') + .option('-u, --remix-ide ', 'URL of remix instance allowed to connect to this web sockect connection') .option('-s, --shared-folder ', 'Folder to share with Remix IDE') - .option('--read-only', 'Treat shared folder as read-only (experimental)') + .option('-r, --read-only', 'Treat shared folder as read-only (experimental)') .on('--help', function () { console.log('\nExample:\n\n remixd -s ./ --remix-ide http://localhost:8080') }).parse(process.argv)