From 43b5b4f5a409b203e4331fed962857e4ba034cd9 Mon Sep 17 00:00:00 2001 From: Jonathan Gold Date: Tue, 30 Oct 2018 15:43:53 -0400 Subject: [PATCH] build: Add rubygems to make deps target cffdb06 adds a linter for markdown which requires rubygems. This commit adds the dependency to the make target. --- misc/make-deps.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/misc/make-deps.sh b/misc/make-deps.sh index c058f9da..4598e2c2 100755 --- a/misc/make-deps.sh +++ b/misc/make-deps.sh @@ -31,11 +31,13 @@ fi if [ ! -z "$YUM" ]; then $sudo_command $YUM install -y libvirt-devel $sudo_command $YUM install -y augeas-devel + $sudo_command $YUM install -y rubygems $sudo_command $YUM install -y time fi if [ ! -z "$APT" ]; then $sudo_command $APT install -y libvirt-dev || true $sudo_command $APT install -y libaugeas-dev || true + $sudo_command $APT install -y rubygems || true $sudo_command $APT install -y libpcap0.8-dev || true # dependencies for building debian packages with `make deb` $sudo_command $APT install -y dpkg-dev devscripts debhelper dh-golang dh-systemd @@ -52,7 +54,7 @@ if [ ! -z "$BREW" ]; then fi if [ ! -z "$PACMAN" ]; then - $sudo_command $PACMAN -S --noconfirm --asdeps --needed libvirt augeas libpcap + $sudo_command $PACMAN -S --noconfirm --asdeps --needed libvirt augeas rubygems libpcap fi if [ $travis -eq 0 ]; then