mirror of
https://github.com/gomods/athens
synced 2026-02-03 15:30:32 +00:00
6 lines
252 B
PowerShell
6 lines
252 B
PowerShell
$repoDir = Join-Path $PSScriptRoot ".." | Join-Path -ChildPath ".."
|
|
if (-not (Join-Path $repoDir config.toml | Test-Path)) {
|
|
$example = Join-Path $repoDir config.dev.toml
|
|
$target = Join-Path $repoDir config.toml
|
|
Copy-Item $example $target
|
|
} |