Adding parameter shortcuts
This commit is contained in:
parent
08f2f8a731
commit
1171920709
10
README.md
10
README.md
|
@ -51,11 +51,11 @@ verify status <uuid>
|
|||
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.
|
||||
|
||||
[<contracts>] List of contracts to submit for analysis (default: all).
|
||||
status <uuid> Retrieve analysis status for given MythX UUID.
|
||||
|
|
16
index.js
16
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[<contracts>]\t\tList of contracts to submit for analysis (default: all).\n" +
|
||||
"\tstatus <uuid>\t\tRetrieve analysis status for given MythX UUID.\n" +
|
||||
"\thelp\t\t\tThis help.\n"
|
||||
"\t[<contracts>]\t\t\tList of contracts to submit for analysis (default: all).\n" +
|
||||
"\tstatus <uuid>\t\t\tRetrieve analysis status for given MythX UUID.\n" +
|
||||
"\thelp\t\t\t\tThis help.\n"
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue