From bbef19a73df3800f70e8d5cb2601e9c77ddccb40 Mon Sep 17 00:00:00 2001 From: mwiegand Date: Wed, 27 Oct 2021 17:14:54 +0200 Subject: [PATCH] fix gollum ruby2.7 brings bundler and everything is strange --- bundles/gollum/items.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/gollum/items.py b/bundles/gollum/items.py index 672a708..014d7e6 100644 --- a/bundles/gollum/items.py +++ b/bundles/gollum/items.py @@ -42,7 +42,7 @@ def run(cmd): actions = { 'gollum_install_bundler': { 'command': run("gem install bundler --user"), - 'unless': run("gem list -i bundler"), + 'unless': run("test -e $(ruby -e 'puts Gem.user_dir')/bin/bundle"), 'needs': [ 'file:/opt/gollum/.bundle/config', ],