From: Sebastian Wagner Date: Wed, 10 Oct 2018 12:21:04 +0000 (+0200) Subject: install-deps.sh: dashboard frontend needs git X-Git-Tag: v14.0.1~58^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d8de543b7e8f815f46e6a967fb5df4620f1cfbc4;p=ceph.git install-deps.sh: dashboard frontend needs git Running `npm install` for the dashboard pulls dependenies with git. Under some setups, git was not installed when building the frontend. Signed-off-by: Sebastian Wagner --- diff --git a/install-deps.sh b/install-deps.sh index 10d4d1381b9b..f0e5ead71b4c 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -429,3 +429,4 @@ for interpreter in python2.7 python3 ; do rm -rf $top_srcdir/install-deps-$interpreter done rm -rf $XDG_CACHE_HOME +git --version || (echo "Dashboard uses git to pull dependencies." ; false)