Skip to content

Commit 83616ac

Browse files
missing data on git
1 parent d705426 commit 83616ac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/check-replay-stubs.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const createSectionWarning = (title, content, icon = "🤖") => {
99

1010
function whichExists(package) {
1111
try {
12-
execFileSync(`which ${package}`, { stdio: 'ignore' });
12+
execSync(`which ${package}`, { stdio: 'ignore' });
1313
console.log(`${package} exists`);
1414
return true;
1515
} catch (error) {
@@ -126,11 +126,12 @@ module.exports = async function ({ fail, warn, __, ___, danger }) {
126126
}
127127

128128
// Required software for running this function.
129-
if (getMissingPackages()?.length > 0) {
129+
/* if (getMissingPackages()?.length > 0) {
130130
console.log(`Missing packages: ${getMissingPackages()}`);
131131
fail(`Can't run replay stubs check because some packages are missing. Please install them and try again.`);
132132
return;
133133
}
134+
*/
134135

135136
console.log("Running replay stubs check...");
136137

0 commit comments

Comments
 (0)