From 7fd2ba674dd3a83599680ea885a4c8c1a26fa2b4 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sun, 4 Aug 2024 18:57:48 +0200 Subject: fix(common/init): Detect latex project by the `watch.sh` file Not every latex project has a lpm.toml file. --- common/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/init b/common/init index d875cdd..557aa90 100644 --- a/common/init +++ b/common/init @@ -93,7 +93,7 @@ prompt APPLICATION_SOURCE_CODE_REPOSITORY "The package's source code repository prompt HOME_PAGE "The home page URL of the project" "https://$REPOSITORY.org/" prompt BUG_URL "The URL people should report bugs to" "$APPLICATION_SOURCE_CODE_REPOSITORY/issues" -if [ -e ./lpm.toml ]; then +if [ -e ./watch.sh ]; then # Use a different default license in latex projects. init_default_license="CC-BY-SA-4.0" else -- cgit 1.4.1