Deploy Production Code for Commit a6f97b192c 🚀

This commit is contained in:
James Ives 2022-01-09 16:06:53 +00:00
parent a6f97b192c
commit 7748df9ea2

View File

@ -51,7 +51,7 @@ const checkParameters = (action) => {
if (!(0, fs_1.existsSync)(action.folderPath)) {
throw new Error(`The directory you're trying to deploy named ${action.folderPath} doesn't exist. Please double check the path and any prerequisite build scripts and try again. ❗`);
}
if (constants_1.SupportedOperatingSystems.includes(process.env.RUNNER_OS)) {
if (!constants_1.SupportedOperatingSystems.includes(process.env.RUNNER_OS)) {
(0, core_1.info)(`The operating system you're using is not supported and results may be varied. Please refer to the documentation for more details. ❗`);
}
};