We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c65a760 commit 759016bCopy full SHA for 759016b
index.ts
@@ -27,8 +27,8 @@ function printValueAndBanner(flagValue: boolean) {
27
if (flagValue) showBanner();
28
}
29
30
-if (!sdkKey) {
31
- console.log('*** Please edit index.js to set sdkKey to your LaunchDarkly SDK key first.');
+if (sdkKey === 'your-sdk-key' || !sdkKey) {
+ console.log('*** Please specify an SDK key by editing index.ts or setting the LAUNCHDARKLY_SDK_KEY environment variable.');
32
process.exit(1);
33
34
0 commit comments