Fix powershell scripts (#615)

* add check_deps.ps1

* fix check_gofmt select-string regex pattern

* capitalize JoinPath

* fix typo

* fail check_deps.ps1 on error
This commit is contained in:
lpdyck
2018-09-01 03:59:55 -06:00
committed by marpio
parent a2a2d93a9e
commit c4417371ef
4 changed files with 20 additions and 3 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ Param(
[switch]$down
)
function execScript($name) {
$scriptsDir = "$(join-path scripts ps)"
$scriptsDir = "$(Join-Path scripts ps)"
& "$(Join-Path $scriptsDir $name)"
}