Remove olympus references in scripts (#679)

* Remove olympus references in scripts

* remove some more
This commit is contained in:
Marwan Sulaiman
2018-09-19 02:42:49 -04:00
committed by GitHub
parent d4941647af
commit 28839219a8
2 changed files with 2 additions and 21 deletions
+1 -16
View File
@@ -30,10 +30,6 @@ Param(
[Parameter(Mandatory=$false)]
[switch]$docker,
[Parameter(Mandatory=$false)]
[Alias("olympus-docker")]
[switch]$olympus_docker,
[Parameter(Mandatory=$false)]
[Alias("proxy-docker")]
[switch]$proxy_docker,
@@ -70,10 +66,6 @@ if ($build.IsPresent) {
Pop-Location
}
try {
Push-Location $(Join-Path cmd olympus)
& buffalo build
}
finally {
Pop-Location
}
@@ -118,10 +110,7 @@ if ($test.IsPresent) {
finally {
Pop-Location
}
try {
Push-Location $(Join-Path cmd olympus)
& buffalo test
}
finally {
Pop-Location
}
@@ -136,13 +125,9 @@ if ($test_e2e.IsPresent) {
}
if ($docker.IsPresent) {
& docker build -t gomods/olympus -f cmd/olympus/Dockerfile .
& docker build -t gomods/proxy -f cmd/proxy/Dockerfile .
}
if ($olympus_docker.IsPresent) {
& docker build -t gomods/olympus -f cmd/olympus/Dockerfile .
}
if ($proxy_docker.IsPresent) {
& docker build -t gomods/proxy -f cmd/proxy/Dockerfile .