We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f359bb7 commit 8e4abb2Copy full SHA for 8e4abb2
SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/OrphanFilePipelineJob.java
@@ -240,7 +240,7 @@ public boolean isJobComplete(PipelineJob job)
240
writer.println("set -e");
241
writer.println("set -x");
242
writer.println("");
243
- probableDeletes.forEach(f -> writer.println("rm -Rf " + f.getPath()));
+ probableDeletes.forEach(f -> writer.println("rm -Rf '" + f.getPath() + "'"));
244
}
245
catch (IOException e)
246
{
0 commit comments