Skip to content

Commit

Permalink
Merge pull request #280 from Morpho-lang/fixpovray
Browse files Browse the repository at this point in the history
Fix povray quiet mode
  • Loading branch information
emmanuellfc authored Dec 11, 2024
2 parents 153eb41 + 01a1d9c commit 8ebdbee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/povray.morpho
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ class POVRaytracer {
self.transparent = transparent // Sets the attribute to be used in the write method and in the command line argument for povray
var path = self.write(file)
var silent = ""
if (quiet) silent = "&> /dev/null"
if (quiet) silent = "> /dev/null 2>&1"
var disp = ""
if (!display) disp = "-D"
var ua = "+A"
Expand Down

0 comments on commit 8ebdbee

Please sign in to comment.