diff options
-rw-r--r-- | snakemake.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/snakemake.el b/snakemake.el index c5df565..09e1916 100644 --- a/snakemake.el +++ b/snakemake.el @@ -555,8 +555,8 @@ Snakemake-graph mode is a minor mode that provides a key, (defun snakemake-compile-targets (targets args) "Run non-interactive `compile' with 'snakemake [ARGS] -- TARGETS'." - (let* ((default-directory (snakemake-snakefile-directory)) - (cmd (snakemake--define-compile-command targets args))) + (let ((default-directory (snakemake-snakefile-directory)) + (cmd (snakemake--define-compile-command targets args))) (compile cmd) (push cmd compile-history))) |