From 0a691d5dc0a1dcffaeb4cd0a9b60bf8b69847c2c Mon Sep 17 00:00:00 2001 From: saltedcoffii <55339220+saltedcoffii@users.noreply.github.com> Date: Thu, 29 Jul 2021 08:29:10 -0700 Subject: [PATCH] fix /usr/local/bin/crew:525:in '+': no implicit conversion of Float into String (TypeError) --- bin/crew | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/crew b/bin/crew index 2596d9402b..8e250fabe5 100755 --- a/bin/crew +++ b/bin/crew @@ -522,7 +522,7 @@ def update search package[:name], true if package[:version] != @pkg.version canBeUpdated += 1 - puts @pkg.name + ' could be updated from ' + package[:version] + ' to ' + @pkg.version + puts @pkg.name + ' could be updated from ' + package[:version].to_s + ' to ' + @pkg.version end end