Skip to content

Commit

Permalink
VCI-844: Update shelltests and fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
krankenbro committed Mar 11, 2024
1 parent a50bf22 commit c75471e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions shelltests/packages.test
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Install Bundle #4
vc-build install -stable -v 4
# Install Bundle #5
vc-build install -stable -v 5
>>>2
>>>= 0

# Update to Bundle #5
vc-build update -v 5
# Update to Bundle #6
vc-build update -v 6
>>>2
>>>= 0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ private static bool IsPlatformInstallationNeeded(string version)
modulesToInstall.ForEach(module => module.DependsOn.Clear());
moduleInstaller.Install(modulesToInstall, progress);

if(ExitCode != 0 || ExitCode !=null)
if(ExitCode != 0 && ExitCode !=null)
{
Assert.Fail("Errors occurred while installing modules.");
}
Expand Down

0 comments on commit c75471e

Please sign in to comment.