From 52b0c5b62c4a938b584e7fd3d6e9e0c436b66723 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sat, 20 Apr 2024 18:41:02 -0400 Subject: [PATCH] Rakefile: drop --user-install from gem command This is outdated I guess? Whatever. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 72eff7b..0dc4d9e 100644 --- a/Rakefile +++ b/Rakefile @@ -20,7 +20,7 @@ end desc 'Install the gem locally (user install)' task :install => :build do - sh 'gem install --user-install *.gem' + sh 'gem install mailshears-*.gem' end Rake::TestTask.new do |t| -- 2.43.2