From 18e887b8248293372973ad5f86377e8358b9756c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dorian=20Mari=C3=A9?= Date: Fri, 19 Jan 2024 15:01:37 +0100 Subject: [PATCH] Synchronize bin/dev from jsbundling-rails to cssbundling-rails There are different bin/dev being generated by cssbundling-rails and jsbundling-rails See https://github.com/rails/jsbundling-rails/pull/174 > dev: Use an affirmative conditional > > ...and avoid regex in match. > > (Try a gem list ails vs a gem list --exact ails to see what I mean.) --- lib/install/dev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/install/dev b/lib/install/dev index a4e05fa..eda330c 100755 --- a/lib/install/dev +++ b/lib/install/dev @@ -1,6 +1,6 @@ #!/usr/bin/env sh -if ! gem list foreman -i --silent; then +if gem list --no-installed --exact --silent foreman; then echo "Installing foreman..." gem install foreman fi