Skip to content

Commit 854a58e

Browse files
committed
Add support for osls
oss-serverless/serverless#27
1 parent 3befdef commit 854a58e

File tree

1 file changed

+18
-16
lines changed

1 file changed

+18
-16
lines changed

components/framework/index.js

+18-16
Original file line numberDiff line numberDiff line change
@@ -190,27 +190,29 @@ class ServerlessFramework {
190190
stdoutResult = stdoutBuffer.toString();
191191
} catch (e) {
192192
throw new Error(
193-
'Could not find the Serverless Framework CLI installation. Ensure Serverless Framework is installed before continuing.\nhttps://serverless.com/framework/docs/getting-started'
193+
'Could not find the Serverless Framework CLI installation. Ensure Serverless Framework is installed before continuing.\nhttps://github.com/oss-serverless/serverless'
194194
);
195195
}
196-
const matchResult = stdoutResult.match(/Framework Core: ([0-9]+\.[0-9]+\.[0-9]+)/);
197-
if (matchResult) {
198-
const version = matchResult[1];
199-
if (doesSatisfyRequiredFrameworkVersion(version)) {
200-
// Stored to avoid checking it on each invocation
201-
// We ignore edge case when someone downgrades or uninstalls serverless afterwards
202-
this.context.state.detectedFrameworkVersion = version;
203-
this.context.save();
204-
} else {
205-
throw new Error(
206-
`The installed version of Serverless Framework (${version}) is not supported by Compose. Please upgrade Serverless Framework to a version greater or equal to "${MINIMAL_FRAMEWORK_VERSION}"`
207-
);
208-
}
209-
} else {
196+
let matchResult = stdoutResult.match(/Framework Core: ([0-9]+\.[0-9]+\.[0-9]+)/);
197+
if (!matchResult) {
198+
// Support osls
199+
matchResult = stdoutResult.match(/osls version: ([0-9]+\.[0-9]+\.[0-9]+)/);
200+
}
201+
if (!matchResult) {
202+
throw new Error(
203+
'Could not verify the Serverless Framework CLI installation. Ensure Serverless Framework is installed before continuing.\nhttps://github.com/oss-serverless/serverless'
204+
);
205+
}
206+
const version = matchResult[1];
207+
if (!doesSatisfyRequiredFrameworkVersion(version)) {
210208
throw new Error(
211-
'Could not verify the Serverless Framework CLI installation. Ensure Serverless Framework is installed before continuing.\nhttps://serverless.com/framework/docs/getting-started'
209+
`The installed version of Serverless Framework (${version}) is not supported by Compose. Please upgrade Serverless Framework to a version greater or equal to "${MINIMAL_FRAMEWORK_VERSION}"`
212210
);
213211
}
212+
// Stored to avoid checking it on each invocation
213+
// We ignore edge case when someone downgrades or uninstalls serverless afterwards
214+
this.context.state.detectedFrameworkVersion = version;
215+
this.context.save();
214216
}
215217
}
216218

0 commit comments

Comments
 (0)