Files
athens/scripts/ps/create_default_config.ps1
marpio f25c427239 Fix for Windows 10 (#648)
* ps: add cdefault conf

* init - add config

* add required env vars for win10

* update test_e2e.ps1 to use go build -mod=vendor
2018-09-13 13:57:37 -07:00

6 lines
256 B
PowerShell

$repoDir = Join-Path $PSScriptRoot ".." | Join-Path -ChildPath ".."
if (-not (Join-Path $repoDir config.toml | Test-Path)) {
$example = Join-Path $repoDir config.example.toml
$target = Join-Path $repoDir config.toml
Copy-Item $example $target
}