Sha256: cf1e2d0fdfcd39182959609c1ee8e1fc260253cedcb03d2081dfb9783886371e
Contents?: true
Size: 591 Bytes
Versions: 20
Compression:
Stored size: 591 Bytes
Contents
// @ts-check // eslint-disable-next-line no-unused-vars class InstallAgentStep { /** * @param {import('./types').BuildToolInstaller} installer */ constructor(installer) { this.buildToolInstaller = installer; } get assumptions() { return this.buildToolInstaller.assumptions; } get installCommand() { return () => this.buildToolInstaller.install(); } get postInstallMessage() { return this.buildToolInstaller.postInstallMessage; } get verifyCommand() { return this.buildToolInstaller.verifyCommand; } } module.exports = InstallAgentStep;
Version data entries
20 entries across 20 versions & 1 rubygems