diff options
author | Kyle Meyer <kyle@kyleam.com> | 2017-03-31 22:12:12 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2017-03-31 23:40:03 -0400 |
commit | ea8d0af781400eb5d5f6409c26f61336147fc2b5 (patch) | |
tree | 09b5b2628f76fa10596138243c8f8aafde05b169 | |
parent | f4102a1f9dbf9ae7255cf251051ef592fbd58474 (diff) | |
download | snakemake-mode-ea8d0af781400eb5d5f6409c26f61336147fc2b5.tar.gz |
snakemake-term-start: s/manifest.scm/guix.scm/ in script example
The "-l" flag of "guix environment" doesn't take a manifest; it takes
a file that evaluates to a package or a list of packages.
-rw-r--r-- | snakemake.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/snakemake.el b/snakemake.el index a7f72bb..ac2db17 100644 --- a/snakemake.el +++ b/snakemake.el @@ -595,7 +595,7 @@ that starts a shell with the desired environment. For example, to set up an enviroment with Guix, `snakemake-shell-file-name' could point to a script that runs - guix environment -l manifest.scm --ad-hoc snakemake --pure" + guix environment -l guix.scm --ad-hoc snakemake --pure" (interactive) (let ((default-directory (snakemake-snakefile-directory))) (unless (snakemake-term-process) |