summaryrefslogtreecommitdiff
path: root/cli/startup_data.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/startup_data.rs')
-rw-r--r--cli/startup_data.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/startup_data.rs b/cli/startup_data.rs
index 1a77915e9..62218fdef 100644
--- a/cli/startup_data.rs
+++ b/cli/startup_data.rs
@@ -8,7 +8,7 @@ pub fn deno_isolate_init() -> StartupData<'static> {
let source_bytes =
include_bytes!(concat!(env!("GN_OUT_DIR"), "/gen/cli/bundle/main.js"));
#[cfg(feature = "check-only")]
- let source_bytes = vec![];
+ let source_bytes = b"";
StartupData::Script(Script {
filename: "gen/cli/bundle/main.js",
@@ -20,7 +20,7 @@ pub fn deno_isolate_init() -> StartupData<'static> {
let data =
include_bytes!(concat!(env!("GN_OUT_DIR"), "/gen/cli/snapshot_deno.bin"));
#[cfg(any(feature = "check-only", feature = "no-snapshot-init"))]
- let data = vec![];
+ let data = b"";
StartupData::Snapshot(data)
}
@@ -35,7 +35,7 @@ pub fn compiler_isolate_init() -> StartupData<'static> {
"/gen/cli/bundle/compiler.js"
));
#[cfg(feature = "check-only")]
- let source_bytes = vec![];
+ let source_bytes = b"";
StartupData::Script(Script {
filename: "gen/cli/bundle/compiler.js",
@@ -49,7 +49,7 @@ pub fn compiler_isolate_init() -> StartupData<'static> {
"/gen/cli/snapshot_compiler.bin"
));
#[cfg(any(feature = "check-only", feature = "no-snapshot-init"))]
- let data = vec![];
+ let data = b"";
StartupData::Snapshot(data)
}