Skip to content

Commit 83052cf

Browse files
committed
Fix make install shell command
1 parent 6d4d7bb commit 83052cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

planemo/commands/cmd_slurm_init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def cli(ctx, **kwds):
3131
shell(["./autogen.sh"], cwd=tempdir)
3232
shell(["./configure", f"--prefix={tempdir}/dist"], cwd=tempdir)
3333
shell(["make"], cwd=tempdir)
34-
shell(["make install"], cwd=tempdir)
34+
shell(["make", "install"], cwd=tempdir)
3535
shutil.move(f"{tempdir}/dist/lib/libdrmaa.so", dest)
3636
info(f"SLURM DRMAA library initialized successfully and copied to {dest}.")
3737
finally:

0 commit comments

Comments
 (0)