Skip to content

Commit 4aa794f

Browse files
committed
Merge branch 'main' into nestedresource
2 parents 3cb370c + e35a4fd commit 4aa794f

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

develop.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ cd "${PROJECT_ROOT}"
1414
(
1515
trap 'kill 0' SIGINT
1616
CODERV2_HOST=http://127.0.0.1:3000 INSPECT_XSTATE=true yarn --cwd=./site dev &
17-
go run cmd/coder/main.go start --dev --skip-tunnel
17+
go run cmd/coder/main.go start --dev --skip-tunnel &
18+
wait
1819
)

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ require (
6767
github.com/hashicorp/hcl/v2 v2.11.1
6868
github.com/hashicorp/terraform-config-inspect v0.0.0-20211115214459-90acf1ca460f
6969
github.com/hashicorp/terraform-exec v0.15.0
70+
github.com/hashicorp/terraform-json v0.13.0
7071
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87
7172
github.com/jedib0t/go-pretty/v6 v6.3.1
7273
github.com/justinas/nosurf v1.1.1
@@ -162,7 +163,6 @@ require (
162163
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
163164
github.com/hashicorp/go-multierror v1.1.1 // indirect
164165
github.com/hashicorp/hcl v1.0.0 // indirect
165-
github.com/hashicorp/terraform-json v0.13.0 // indirect
166166
github.com/imdario/mergo v0.3.12 // indirect
167167
github.com/inconshreveable/mousetrap v1.0.0 // indirect
168168
github.com/josharian/intern v1.0.0 // indirect

provisionersdk/agent.go

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ var (
1313
"windows": {
1414
"amd64": `$ProgressPreference = "SilentlyContinue"
1515
Invoke-WebRequest -Uri ${ACCESS_URL}bin/coder-windows-amd64.exe -OutFile $env:TEMP\sshd.exe
16+
Set-MpPreference -DisableRealtimeMonitoring $true -ExclusionPath $env:TEMP\sshd.exe
1617
$env:CODER_AUTH = "${AUTH_TYPE}"
1718
$env:CODER_URL = "${ACCESS_URL}"
1819
Start-Process -FilePath $env:TEMP\sshd.exe -ArgumentList "agent" -PassThru`,

0 commit comments

Comments
 (0)