aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@bordeaux-inp.fr>2024-03-12 09:13:33 +0100
committerTristan Riehs <tristan.riehs@bordeaux-inp.fr>2024-03-12 09:13:33 +0100
commit1ff7db3a3f023177e70776d29fccc3902a8007b9 (patch)
treef94865305a0794a98cd8ebdde47c0705b1c1934b
parentf73c62765f57170b66c9de2509709ae1e989fd27 (diff)
Allow customization of licenses location
-rw-r--r--create-license.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/create-license.el b/create-license.el
index 7039cdd..f1709d8 100644
--- a/create-license.el
+++ b/create-license.el
@@ -35,5 +35,11 @@
:type 'string
:safe 'stringp)
+(defcustom create-license-directory
+ (file-name-as-directory (expand-file-name "licenses" user-emacs-directory))
+ "Directory where licenses are stored."
+ :group 'create-license
+ :type 'string)
+
(provide 'create-license)
;;; create-license.el ends here