added forgotten instance of quoting of the output filename

This commit is contained in:
Dima Kogan 2010-07-26 02:29:45 -07:00
parent 61b7eff596
commit 4155916053

View File

@ -434,7 +434,7 @@ sub mainThread {
# sleep until the plot file exists, and it is closed. Sometimes the output is # sleep until the plot file exists, and it is closed. Sometimes the output is
# still being written at this point # still being written at this point
usleep(100_000) until -e $outputfile; usleep(100_000) until -e $outputfile;
usleep(100_000) until(system("fuser -s $outputfile")); usleep(100_000) until(system("fuser -s \"$outputfile\""));
print "Wrote output to $outputfile\n"; print "Wrote output to $outputfile\n";
return; return;