diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2024-03-19 03:59:41 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2024-03-19 04:00:24 +0900 |
commit | aba63448954e2e2242f1f5b5d8b17dc54c754acf (patch) | |
tree | 2896d5f3df3969031ce89faaec836b9933278b61 /scripts/export-to-html.el | |
parent | 9f7c2e9bf63cb69a1cb8e00545e198338ca05428 (diff) |
Use absolute path.
Diffstat (limited to 'scripts/export-to-html.el')
-rw-r--r-- | scripts/export-to-html.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/export-to-html.el b/scripts/export-to-html.el index 735414c..e2a7177 100644 --- a/scripts/export-to-html.el +++ b/scripts/export-to-html.el @@ -1,8 +1,8 @@ (unless (= 2 (length argv)) (error "Usage: emacs --script scripts/export-to-html <source-file> <output-file>")) -(let* ((source-filename (elt argv 0)) - (output-filename (elt argv 1)) +(let* ((source-filename (file-truename (elt argv 0))) + (output-filename (file-truename (elt argv 1))) (source-buffer (find-file source-filename)) (output-buffer (find-file output-filename)) (html-buffer (get-buffer-create "*Org HTML Export*")) |