1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-23 07:44:48 -05:00

Use correct type for source_bytes when buiding in check-only mode

This commit is contained in:
Bert Belder 2019-04-09 07:17:19 +02:00
parent 5a3f3a7445
commit fe2f3ba889

View file

@ -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)
}