Skip to content

Commit

Permalink
Update test-example.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
AlisherAmonulloev committed Dec 13, 2024
1 parent a866c93 commit 300c01d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test-example.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ function Process-JavaScriptProjects {

Write-Output "`nInstalling DevExtreme packages"
npm install $packageList --save --save-exact --no-fund

if (-not $?) {
Write-Error "`nERROR: Failed to install DevExtreme packages: $($folder.Name)"
$global:errorCode = 1
}

Write-Output "`nInstalling the rest of the packages $($folder.Name)"
npm install --save --save-exact --no-fund --loglevel=error
if (-not $?) {
Expand Down

0 comments on commit 300c01d

Please sign in to comment.