summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorPaul Loberg <pallo@fourc.eu>2017-11-02 12:01:50 +0100
committerPaul Loberg <pallo@fourc.eu>2017-11-02 12:01:50 +0100
commitd608694a3a948d31c1046039e0b0dcea41301fa2 (patch)
tree9cb1d1ae75e41653019c73dcf250aedb5219c5a3 /README.md
parentbee11bb54063b2c651db1b547378674a36c804bb (diff)
Explicitly use "bash" instead of "sh" as the two may not be equivalent in all setups.
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 37ceb44ccfd..9855a35260f 100644
--- a/README.md
+++ b/README.md
@@ -28,14 +28,14 @@ You can also setup CentOS 7 natively and install the following build dependencie
### Build Java modules
export MAVEN_OPTS="-Xms128m -Xmx512m"
- sh bootstrap.sh java
+ bash bootstrap.sh java
mvn -T <num-threads> install
### Build C++ modules
Replace `<build-dir>` with the name of the directory in which you'd like to build Vespa.
Replace `<source-dir>` with the directory in which you've cloned/unpacked the source tree.
- sh bootstrap-cpp.sh <source-dir> <build-dir>
+ bash bootstrap-cpp.sh <source-dir> <build-dir>
cd <build-dir>
make -j <num-threads>
ctest3 -j <num-threads>