File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 31
31
"ghcr.io/devcontainers/features/node:1" : {
32
32
"version" : " lts" ,
33
33
"nodeGypDependencies" : true
34
+ },
35
+ "ghcr.io/devcontainers/features/powershell:1" : {
36
+ "version" : " latest"
34
37
}
35
38
}
36
39
}
Original file line number Diff line number Diff line change 5
5
6
6
$ENV: BICEP_LANGUAGE_SERVER_PATH = [System.IO.Path ]::Join($PSScriptRoot , " ..\src\Bicep.LangServer\bin\Debug\net8.0\Bicep.LangServer.dll" )
7
7
$ENV: Path = [System.IO.Path ]::Join($PSScriptRoot , " ..\src\Bicep.Cli\bin\Debug\net8.0" ) + " ;" + $ENV: Path
8
- & Start-Process - FilePath " code" - WindowStyle hidden - ArgumentList $args
8
+ if ($IsWindows )
9
+ {
10
+ & Start-Process - FilePath " code" - WindowStyle hidden - ArgumentList $args
11
+ }
12
+ else
13
+ {
14
+ & Start-Process - FilePath " code" - ArgumentList $args
15
+ }
You can’t perform that action at this time.
0 commit comments