Skip to content

Commit

Permalink
Don't require immutable Yarn build
Browse files Browse the repository at this point in the history
Since the project version is in the lock file, updating the version
during CI will cause the lock file to be updated
  • Loading branch information
bdukes committed Aug 10, 2021
1 parent 924cf05 commit 3c6b8c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Build/BuildScripts/AEModule.build
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<Target Name="RunYarnWorkspace">
<Message Importance="high" Text="Running Yarn for $(WorkingDirectory)" />

<Yarn Command="install --immutable" WorkingDirectory="$(WorkingDirectory)" IgnoreExitCode="false" Condition="$(WorkingDirectory.Length) > 0" />
<Yarn Command="install --no-immutable" WorkingDirectory="$(WorkingDirectory)" IgnoreExitCode="false" Condition="$(WorkingDirectory.Length) > 0" />
<Yarn Command="build" WorkingDirectory="$(WorkingDirectory)" IgnoreExitCode="false" Condition="$(WorkingDirectory.Length) > 0" />
</Target>
</Project>

0 comments on commit 3c6b8c5

Please sign in to comment.