trufflesuite/truffle

View on GitHub
packages/core/lib/commands/obtain/meta.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  command: "obtain",
  description: "Fetch and cache a specified compiler",
  help: {
    usage: "truffle obtain [--solc <version>]",
    options: [
      {
        option: "--solc <version>",
        description: `Download and cache a version of the solc compiler. (required)`
      }
    ],
    allowedGlobalOptions: ["quiet"]
  }
};