diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-07-22 15:46:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-22 15:46:37 -0400 |
| commit | 6960637b5ce20f717d853ef42d6d8132297ab64b (patch) | |
| tree | 7edb2e42401a863f35c36abc30226158e0deae38 /tests/integration | |
| parent | 92abdb7669d81b656ae0505cf923fca3b7feea01 (diff) | |
fix(publish): warn about missing license file (#24677)
Part of https://github.com/denoland/deno/issues/24676 , but just a
warning for now.
Diffstat (limited to 'tests/integration')
| -rw-r--r-- | tests/integration/publish_tests.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/integration/publish_tests.rs b/tests/integration/publish_tests.rs index 1bff2094d..013bf3973 100644 --- a/tests/integration/publish_tests.rs +++ b/tests/integration/publish_tests.rs @@ -398,6 +398,7 @@ fn allow_dirty() { })); temp_dir.join("main.ts").write(""); + temp_dir.join("LICENSE").write(""); let cmd = Command::new("git") .arg("init") @@ -418,6 +419,7 @@ Checking for slow types in the public API... Uncommitted changes: +?? LICENSE ?? deno.json ?? main.ts |
