summaryrefslogtreecommitdiff
path: root/packages/integrations/cloudflare/src
diff options
context:
space:
mode:
authorGravatar Dario Piotrowicz <dario@cloudflare.com> 2024-03-27 14:39:52 +0100
committerGravatar GitHub <noreply@github.com> 2024-03-27 14:39:52 +0100
commita5ef475ac987bc719cff86486916e4bf55ded8c6 (patch)
tree0b80a2fa89cc4f2a17e13f9bd4b94235fb116d3c /packages/integrations/cloudflare/src
parent3e487585110ede59bbdb8b06150df1cf044d3883 (diff)
downloadastro-a5ef475ac987bc719cff86486916e4bf55ded8c6.tar.gz
astro-a5ef475ac987bc719cff86486916e4bf55ded8c6.tar.zst
astro-a5ef475ac987bc719cff86486916e4bf55ded8c6.zip
fix(cloudflare): fix typo in .dev.vars log message (#204)
Diffstat (limited to 'packages/integrations/cloudflare/src')
-rw-r--r--packages/integrations/cloudflare/src/utils/local-runtime.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/cloudflare/src/utils/local-runtime.ts b/packages/integrations/cloudflare/src/utils/local-runtime.ts
index e9e5aab88..8318fb1e3 100644
--- a/packages/integrations/cloudflare/src/utils/local-runtime.ts
+++ b/packages/integrations/cloudflare/src/utils/local-runtime.ts
@@ -186,7 +186,7 @@ class LocalRuntime {
const e = error as NodeJSError;
if (e.code === 'ENOENT') {
this._logger.info(
- 'There is no `.dev.vars` file in the root directory, if you have encrypted secrets or environmental variables you Cloudflare recommends to put them in this file'
+ 'There is no `.dev.vars` file in the root directory, if you have encrypted secrets or environmental variables Cloudflare recommends you to put them in this file'
);
this.secrets = {};
} else {