diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-07-17 00:41:25 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-18 15:43:50 -0400 |
commit | 3dde880c328c2bf51334f014fdaf772cfed7e8ea (patch) | |
tree | 4fd8b577226760559b93b3d13e809ffe894bdb4c /src | |
parent | b892188878fd5a1a38a45d1c2e892c41be240ca0 (diff) |
Rename deno_nosnapshot to deno_ns.
Diffstat (limited to 'src')
-rw-r--r-- | src/from_filesystem.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/from_filesystem.cc b/src/from_filesystem.cc index b8854c6ff..bf63ef46f 100644 --- a/src/from_filesystem.cc +++ b/src/from_filesystem.cc @@ -15,7 +15,7 @@ namespace deno { Deno* NewFromFileSystem(void* data, deno_recv_cb cb) { - printf("Reading javascript runtime bundle from " BUNDLE_LOCATION "\n"); + printf("load bundle " BUNDLE_LOCATION "\n"); std::string js_source; CHECK(deno::ReadFileToString(BUNDLE_LOCATION, &js_source)); |