Skip to content

Commit 0187c45

Browse files
committed
Fix build
1 parent 898bc18 commit 0187c45

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1028,7 +1028,7 @@ function processActionArg() {
10281028
}
10291029
function processArgs() {
10301030
core.debug('Processing args...');
1031-
processActionArg();
1031+
action = processActionArg();
10321032
directory = core.getInput(DIRECTORY);
10331033
core.debug(`Processing directory argument: ${directory}`);
10341034
if (directory.length < 1) {

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function processActionArg(): MesonAction {
6565
function processArgs() {
6666
core.debug('Processing args...');
6767

68-
processActionArg();
68+
action = processActionArg();
6969

7070
directory = core.getInput(DIRECTORY);
7171
core.debug(`Processing directory argument: ${directory}`);

0 commit comments

Comments
 (0)