1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
Author: Michael R. Crusoe <crusoe@debian.org>
Description: don't use sudo during clean
Forwarded: not-needed
--- transdecoder.orig/sample_data/simple_transcriptome_target/cleanme.pl
+++ transdecoder/sample_data/simple_transcriptome_target/cleanme.pl
@@ -36,7 +36,7 @@
`rm -rf ./Trinity.fasta.transdecoder_dir/`;
`rm -rf ./Trinity.fasta.transdecoder_dir.__checkpoints`;
`rm -rf ./Trinity.fasta.transdecoder_dir.__checkpoints_longorfs`;
-`sudo rm -rf ./transdecoder.docker_outdir`;
+`rm -rf ./transdecoder.docker_outdir`;
exit(0);
|