1
0
mirror of https://github.com/Minionguyjpro/Inno-Setup-Action synced 2026-02-18 17:41:18 +01:00

Update index.js

This commit is contained in:
Minionguyjpro
2023-12-11 17:05:11 +01:00
committed by GitHub
parent 624b4239bc
commit b8e8eb5936

4
dist/index.js vendored
View File

@@ -22,11 +22,11 @@ if (process.platform === 'win32') {
}); });
} else { } else {
error = { code: 1 } error = { code: 1 }
core.setFailed('Error: The repository was not cloned. Please specify the actions/checkout action before this step.'); core.setFailed('The repository was not cloned. Please specify the actions/checkout action before this step.');
process.exit(error.code); process.exit(error.code);
} }
} else { } else {
error = { code: 1 }; error = { code: 1 };
core.setFailed('Error: This action is only supported on Windows!'); core.setFailed('This action is only supported on Windows!');
process.exit(error.code); process.exit(error.code);
} }