three-blocks-login 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/login.js +2 -2
- package/package.json +1 -1
package/bin/login.js
CHANGED
|
@@ -39,7 +39,7 @@ const LICENSE =
|
|
|
39
39
|
|
|
40
40
|
if (!LICENSE || String(LICENSE).trim() === "") {
|
|
41
41
|
fail(
|
|
42
|
-
"Missing license key. Provide --license <key> or set THREE_BLOCKS_SECRET_KEY
|
|
42
|
+
"Missing license key. Provide --license <key> or set THREE_BLOCKS_SECRET_KEY in your .env file."
|
|
43
43
|
);
|
|
44
44
|
}
|
|
45
45
|
|
|
@@ -47,7 +47,7 @@ if (!LICENSE || String(LICENSE).trim() === "") {
|
|
|
47
47
|
const LICENSE_CLEAN = sanitizeLicense(LICENSE);
|
|
48
48
|
if (!LICENSE_CLEAN) {
|
|
49
49
|
fail(
|
|
50
|
-
"Missing license key. Provide --license <key> or set THREE_BLOCKS_SECRET_KEY
|
|
50
|
+
"Missing license key. Provide --license <key> or set THREE_BLOCKS_SECRET_KEY in your .env file."
|
|
51
51
|
);
|
|
52
52
|
}
|
|
53
53
|
const invalidIdx = findFirstNonByteChar(LICENSE_CLEAN);
|