remove erronous space

This commit is contained in:
Arne Morten Kvarving 2016-04-04 13:18:29 +02:00
parent 98afe9a8a8
commit 49b620c295

View File

@ -27,7 +27,7 @@ function clone_module {
git remote add origin https://github.com/OPM/$1
git fetch origin $2:branch_to_build
git checkout branch_to_build
test $? - eq 0 || exit 1
test $? -eq 0 || exit 1
popd
}