From 1171920709f214abcdc111bb1088ec84eb029515 Mon Sep 17 00:00:00 2001 From: Sebastian Mueller Date: Mon, 29 Apr 2019 11:44:42 +0200 Subject: [PATCH] Adding parameter shortcuts --- README.md | 10 +++++----- index.js | 16 ++++++++-------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 2967986..c8fbf7c 100644 --- a/README.md +++ b/README.md @@ -51,11 +51,11 @@ verify status verify help Options: - --full Perform full instead of quick analysis. - --debug Additional debug output. - --no-cache-lookup Skip MythX-side cache lookup of report. - --limit Maximum number of concurrent analyses. - --initial-delay Time in seconds before first analysis status check. + --full, -f Perform full instead of quick analysis. + --debug, -d Additional debug output. + --no-cache-lookup, -c Skip MythX-side cache lookup of report. + --limit, -l Maximum number of concurrent analyses. + --initial-delay, -i Time in seconds before first analysis status check. [] List of contracts to submit for analysis (default: all). status Retrieve analysis status for given MythX UUID. diff --git a/index.js b/index.js index 809c36b..66ba493 100644 --- a/index.js +++ b/index.js @@ -70,15 +70,15 @@ module.exports = function(embark) { "\tverify help\n" + "\n" + "Options:\n" + - "\t--full\t\t\tPerform full rather than quick analysis.\n" + - "\t--debug\t\t\tAdditional debug output.\n" + - "\t--no-cache-lookup\tSkip MythX-side cache lookup of report.\n" + - "\t--limit\t\t\tMaximum number of concurrent analyses.\n" + - "\t--initial-delay\t\tTime in seconds before first analysis status check.\n" + + "\t--full, -f\t\t\tPerform full rather than quick analysis.\n" + + "\t--debug, -d\t\t\tAdditional debug output.\n" + + "\t--no-cache-lookup, -c\t\tSkip MythX-side cache lookup of report.\n" + + "\t--limit, -l\t\t\tMaximum number of concurrent analyses.\n" + + "\t--initial-delay, -i\t\tTime in seconds before first analysis status check.\n" + "\n" + - "\t[]\t\tList of contracts to submit for analysis (default: all).\n" + - "\tstatus \t\tRetrieve analysis status for given MythX UUID.\n" + - "\thelp\t\t\tThis help.\n" + "\t[]\t\t\tList of contracts to submit for analysis (default: all).\n" + + "\tstatus \t\t\tRetrieve analysis status for given MythX UUID.\n" + + "\thelp\t\t\t\tThis help.\n" ) }