Fix path variable name

This commit is contained in:
Justin Hutchings
2023-01-22 07:42:01 +00:00
parent a774bdcc92
commit e674ec5ee3
3 changed files with 3 additions and 3 deletions

2
dist/index.js generated vendored
View File

@@ -23935,7 +23935,7 @@ const dependency_submission_toolkit_1 = __nccwpck_require__(9810);
const componentDetection_1 = __importDefault(__nccwpck_require__(4878));
function run() {
return __awaiter(this, void 0, void 0, function* () {
let manifests = yield componentDetection_1.default.scanAndGetManifests(core.getInput('path'));
let manifests = yield componentDetection_1.default.scanAndGetManifests(core.getInput('filePath'));
let snapshot = new dependency_submission_toolkit_1.Snapshot({
name: "Component Detection",
version: "0.0.1",

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@@ -13,7 +13,7 @@ import {
import ComponentDetection from './componentDetection';
async function run() {
let manifests = await ComponentDetection.scanAndGetManifests(core.getInput('path'));
let manifests = await ComponentDetection.scanAndGetManifests(core.getInput('filePath'));
let snapshot = new Snapshot({
name: "Component Detection",