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)