diff options
| author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-10-19 20:19:20 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-19 21:19:20 +0200 |
| commit | 3f5513758d9e237d7c3775165c4164db89a95d31 (patch) | |
| tree | 37b6e2526446d23a2373ecc53932ae6805aeff8a /cli/tsc.rs | |
| parent | 9d664f8375856be228e4f98b8381ac934d84604b (diff) | |
feat(cli/installer): Add missing flags for deno install (#7601)
This commit adds support for following flags:
- deno install --importmap
- deno install --no-remote
- deno install --lock
- deno install --lock-write
- deno install --cached-only
- deno install --v8-flags
- deno install --seed
Diffstat (limited to 'cli/tsc.rs')
| -rw-r--r-- | cli/tsc.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/tsc.rs b/cli/tsc.rs index 02ca9d59e..9fcf4e1d4 100644 --- a/cli/tsc.rs +++ b/cli/tsc.rs @@ -586,7 +586,8 @@ impl TsCompiler { if !check_passed { eprintln!( "Subresource integrity check failed --lock={}\n{}", - g.filename, graph_file.url + g.filename.display(), + graph_file.url ); std::process::exit(10); } |
