File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -216,7 +216,6 @@ function Deploy-Accelerator {
216216 if ($output_folder_path.StartsWith (" ~/" )) {
217217 $output_folder_path = Join-Path $HOME $output_folder_path.Replace (" ~/" , " " )
218218 }
219- $output_folder_path = (Resolve-Path - Path $output_folder_path ).Path
220219 Write-Verbose " Using output folder path: $output_folder_path "
221220
222221 # Check and install tools needed
@@ -246,7 +245,6 @@ function Deploy-Accelerator {
246245 if ($inputConfigFilePath.StartsWith (" ~/" )) {
247246 $inputConfigFilePath = Join-Path $HOME $inputConfigFilePath.Replace (" ~/" , " " )
248247 }
249- $inputConfigFilePath = (Resolve-Path - Path $inputConfigFilePath ).Path
250248 Write-Verbose " Loading input config from file: $inputConfigFilePath "
251249 $inputConfig = Get-ALZConfig - configFilePath $inputConfigFilePath - inputConfig $inputConfig - hclParserToolPath $hclParserToolPath
252250 }
@@ -408,7 +406,6 @@ function Deploy-Accelerator {
408406 if ($additionalFile.StartsWith (" ~/" )) {
409407 $additionalFile = Join-Path $HOME $additionalFile.Replace (" ~/" , " " )
410408 }
411- $additionalFile = (Resolve-Path - Path $additionalFile ).Path
412409 $starterAdditionalFiles += $additionalFile
413410 }
414411 $inputConfig.starter_additional_files.Value = $starterAdditionalFiles
You can’t perform that action at this time.
0 commit comments