Skip to content

Commit

Permalink
asfgt
Browse files Browse the repository at this point in the history
  • Loading branch information
haarg committed Sep 13, 2024
1 parent 5e2d33d commit fa1ae8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -24453,7 +24453,7 @@ var run = async () => {
const relationships = core2.getInput("relationships").split(/\s+/);
const features = core2.getInput("features").split(/\s+/);
const sources = core2.getInput("sources").split(/\s+/);
const { perl, ...prereqs } = getPrereqs({
const { perl, ...prereqs } = await getPrereqs({
phases,
relationships,
features,
Expand Down
2 changes: 1 addition & 1 deletion src/main.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const run = async () => {
const features = core.getInput("features").split(/\s+/);
const sources = core.getInput("sources").split(/\s+/);

const { perl, ...prereqs } = getPrereqs({
const { perl, ...prereqs } = await getPrereqs({
phases,
relationships,
features,
Expand Down

0 comments on commit fa1ae8d

Please sign in to comment.