diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-02-29 18:21:28 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-02-29 18:21:28 -0500 |
commit | e9f6240f36e8123d8eabf7785f64f50e4e0ed50e (patch) | |
tree | 7c501ffe363a1ab065a3b3fd53fd5b15bf97ab37 | |
parent | 4a3558fea08a254d96e3836f2b865c63bb65be06 (diff) | |
download | snakemake-mode-e9f6240f36e8123d8eabf7785f64f50e4e0ed50e.tar.gz |
snakemake-compile: Fix target path
snakemake-file-targets-at-point expects to be called from the original
directory.
-rw-r--r-- | snakemake.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/snakemake.el b/snakemake.el index 9d840c2..663f336 100644 --- a/snakemake.el +++ b/snakemake.el @@ -383,13 +383,13 @@ $ snakemake [ARGS] -- <rule>" $ snakemake [ARGS] -- <targets>" (interactive (list (snakemake-arguments))) - (let* ((default-directory (snakemake-snakefile-directory)) - (compilation-read-command t) - (compile-command (snakemake--define-compile-command - (or (snakemake-file-targets-at-point) - (snakemake-rule-at-point) - (list "")) - args))) + (let ((compile-command (snakemake--define-compile-command + (or (snakemake-file-targets-at-point) + (snakemake-rule-at-point) + (list "")) + args)) + (compilation-read-command t) + (default-directory (snakemake-snakefile-directory))) (call-interactively #'compile))) ;;;###autoload (autoload 'snakemake-popup "snakemake" nil t) |