From 8c085104e971795858fa1d9062b86d9cfb9cf720 Mon Sep 17 00:00:00 2001 From: Jumpei Matsuda Date: Tue, 1 Sep 2020 22:23:07 +0900 Subject: [PATCH] Fixed frozen strings --- lib/apkstats/plugin.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/apkstats/plugin.rb b/lib/apkstats/plugin.rb index 0e4efca..bb80acb 100644 --- a/lib/apkstats/plugin.rb +++ b/lib/apkstats/plugin.rb @@ -304,7 +304,7 @@ def apkanalyzer_command end end - command_path.chomp! + command_path = command_path.chomp raise Error, "Please include apkanalyer in your PATH or specify it explicitly." if command_path.empty?