Prior to this commit, if Jenkins could not find ./install-deps.sh in the
tree, the ceph-setup task would fail.
Older versions of Ceph (such as ceph-0.80.8.x) have no install-deps.sh
script. In these cases, simply continue on with the build.
# because autogen+configure will check for dependencies, we are forced to install them
# and ensure they are present in the current host
-echo "Ensuring dependencies are installed"
-./install-deps.sh
+if [ -x install-deps.sh ]; then
+ echo "Ensuring dependencies are installed"
+ ./install-deps.sh
+fi
# run submodule updates regardless
echo "Running submodule update ..."