Skip to content

Commit 519332a

Browse files
committed
dev: Development changes
1 parent 4c30f89 commit 519332a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/actions/node-build/src/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ async function run() {
2323
const packageDir = path.join(rootDir, pkg.directory);
2424
pkg.buildDir = "src";
2525
const buildDir = path.join(packageDir, pkg.buildDir || "./");
26-
if (fs.existsSync(buildDir)) {
26+
if (!fs.existsSync(buildDir)) {
2727
core.warning("build directory do not exists. Skipping");
2828
continue;
2929
}

0 commit comments

Comments
 (0)