Skip to content

Commit

Permalink
Ensure workshop renderer is not running except when need classic format.
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamDumpleton committed Jul 27, 2023
1 parent d2d5d3b commit 6a83002
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,10 +288,12 @@ ENABLE_CONSOLE_OCTANT_PROCESS=$ENABLE_CONSOLE_OCTANT
ENABLE_WORKSHOP_PROCESS=$ENABLE_WORKSHOP

if [ x"$ENABLE_WORKSHOP" == x"true" ]; then
if [ x"$WORKSHOP_RENDERER" != x"local" ]; then
if [ x"$WORKSHOP_RENDERER" == x"local" ]; then
if [ x"$LOCAL_RENDERER_TYPE" != x"classic" ]; then
ENABLE_WORKSHOP_PROCESS=false
fi
else
ENABLE_WORKSHOP_PROCESS=false
fi
fi

Expand Down

0 comments on commit 6a83002

Please sign in to comment.