aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 6 insertions, 2 deletions
diff --git a/configure b/configure
index 95d161eb..22673bc4 100755
--- a/configure
+++ b/configure
@@ -151,13 +151,17 @@ else
exit 5
fi
res=$(git clone "$url" "$path" 2>&1)
- if ! [ $? -eq 0 ] || ! [ -x $git ]; then
+ if ! [ $? -eq 0 ] || ! [ -d $path ]; then
echo "Failed retrieving missing files: $res"
exit 5
fi
if [[ "$branch" != "" ]]; then
pushd "$path" > /dev/null
- git checkout "$branch" 2>/dev/null
+ res=$(git checkout "$branch" 2>&1)
+ if ! [ $? -eq 0 ]; then
+ echo "Failed retrieving missing files: $res"
+ exit 5
+ fi
popd > /dev/null
fi
echo "Submodule path '$path': checked out '$branch' (via git clone)"