Skip to content

Commit

Permalink
Revert "fix spawn not defined"
Browse files Browse the repository at this point in the history
This reverts commit 1034917.
  • Loading branch information
shinohara-rin committed Mar 17, 2024
1 parent ecb67f1 commit ea49458
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30892,7 +30892,7 @@ const core = __nccwpck_require__(3877);
const github = __nccwpck_require__(5585);
const fs = __nccwpck_require__(7147);
const path = __nccwpck_require__(1017);
const { spawnSync,spawn } = __nccwpck_require__(2081);
const { spawnSync } = __nccwpck_require__(2081);
const expandHomeDir = __nccwpck_require__(3839);

function show_message(type, message) {
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const core = require("@actions/core");
const github = require("@actions/github");
const fs = require("fs");
const path = require("path");
const { spawnSync,spawn } = require("child_process");
const { spawnSync } = require("child_process");
const expandHomeDir = require("expand-home-dir");

function show_message(type, message) {
Expand Down

0 comments on commit ea49458

Please sign in to comment.