aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscrewdriver/build-vespa.sh10
-rwxr-xr-xscrewdriver/detect-what-to-build.sh4
2 files changed, 7 insertions, 7 deletions
diff --git a/screwdriver/build-vespa.sh b/screwdriver/build-vespa.sh
index 1fe0cc944dc..51dda3a1658 100755
--- a/screwdriver/build-vespa.sh
+++ b/screwdriver/build-vespa.sh
@@ -35,12 +35,12 @@ case $SHOULD_BUILD in
ccache --show-stats
;;
java)
- ./bootstrap.sh java
- mvn -V $VESPA_MAVEN_EXTRA_OPTS install
- ;;
+ ./bootstrap.sh java
+ mvn -V $VESPA_MAVEN_EXTRA_OPTS install
+ ;;
go)
- make -C client/go -j ${NUM_THREADS}
- ;;
+ make -C client/go -j ${NUM_THREADS}
+ ;;
*)
make -C client/go -j ${NUM_THREADS}
./bootstrap.sh java
diff --git a/screwdriver/detect-what-to-build.sh b/screwdriver/detect-what-to-build.sh
index 401f78e0312..9c22a9463e2 100755
--- a/screwdriver/detect-what-to-build.sh
+++ b/screwdriver/detect-what-to-build.sh
@@ -26,9 +26,9 @@ elif [[ -z $FILES ]]; then
elif ! grep -v -E "(\.h|\.hh|\.hxx|\.c|\.cpp|\.cxx)$" <<< "$FILES" &> /dev/null; then
SHOULD_BUILD=cpp
elif ! grep -v -E "(\.java)$" <<< "$FILES" &> /dev/null; then
- SHOULD_BUILD=java
+ SHOULD_BUILD=java
elif ! grep -v -E "(\.go)$" <<< "$FILES" &> /dev/null; then
- SHOULD_BUILD=go
+ SHOULD_BUILD=go
else
SHOULD_BUILD=all
fi