Skip to content

Commit

Permalink
Turn off DynamicUpdating when building the paclet from sources
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Daily committed Dec 19, 2024
1 parent 15c6381 commit 9e86736
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Scripts/UnformatFiles.wls
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ files = cicd`ScriptConfirmMatch[

cicd`ConsoleLog[ "Unformatting " <> ToString @ Length @ files <> " files..." ];

result = cicd`ScriptConfirmMatch[ unformat /@ files, { __String } ];
result = cicd`ScriptConfirmMatch[ UsingFrontEnd[
CurrentValue[ $FrontEndSession, DynamicUpdating ] = False;
unformat /@ files
], { __String } ];

EndPackage[ ];

Expand Down

0 comments on commit 9e86736

Please sign in to comment.