File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -198,15 +198,12 @@ try {
198198
199199 Write-Host " INFO: Running PIP install..." - ForegroundColor Green
200200
201- # Remove package directory if it exists
202- Remove-Item - Path TEMP:\packages - Recurse - Force - ErrorAction SilentlyContinue
203-
204201 # Create temporary directory for PIP packages
205202 $packageDir = New-Item - ItemType Directory - Path (Join-Path - Path $tempFolder - ChildPath " packages" )
206203
207204 # Fetch Azure IPAM Engine modules
208205 $pipInstallErr = $ (
209- $pipInstall = pip install -- upgrade - r requirements.lock.txt -- target $packageDir.FullName -- no- warn- script- location -- progress- bar off
206+ $pipInstall = pip install - r requirements.lock.txt -- target $packageDir.FullName -- no- warn- script- location -- progress- bar off
210207 ) 2>&1
211208
212209 # Switch back to original dir
You can’t perform that action at this time.
0 commit comments