aboutsummaryrefslogtreecommitdiff
path: root/bdep/new.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bdep/new.cxx')
-rw-r--r--bdep/new.cxx15
1 files changed, 13 insertions, 2 deletions
diff --git a/bdep/new.cxx b/bdep/new.cxx
index 4dff04f..b212816 100644
--- a/bdep/new.cxx
+++ b/bdep/new.cxx
@@ -1322,9 +1322,20 @@ cmd_new (cmd_new_options&& o, cli::group_scanner& args)
readme_f = move (f);
}
- // LICENSE or UNLICENSE
+ // LICENSE
+ // LICENSE.txt
+ // LICENSE.md
+ // COPYING
+ // UNLICENSE
//
- if (exists ((f = out / "LICENSE")) || exists ((f = out / "UNLICENSE")))
+ // Note that LICENSE.md is often just a plain text file without any
+ // markup so we should be able to detect the license.
+ //
+ if (exists ((f = out / "LICENSE")) ||
+ exists ((f = out / "LICENSE.txt")) ||
+ exists ((f = out / "LICENSE.md")) ||
+ exists ((f = out / "COPYING")) ||
+ exists ((f = out / "UNLICENSE")))
{
license_e = extract_license (f);