aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Schimandl2016-10-23 09:57:28 +0200
committerMartin Schimandl2016-10-23 09:57:28 +0200
commit31fb99680026fb285bc69f1641e3fbdbed09ee98 (patch)
tree6158b856bdb8bb6ceac480323d604f58b20101a5
parent8f8606b8c84d47da5f3bf4e7128f5e271ac212b1 (diff)
downloadbrew-31fb99680026fb285bc69f1641e3fbdbed09ee98.tar.bz2
Remove unncessary semicolon
-rw-r--r--Library/Homebrew/cask/lib/hbc/cli/reinstall.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/cli/reinstall.rb b/Library/Homebrew/cask/lib/hbc/cli/reinstall.rb
index 61a7c2d71..c98249ca8 100644
--- a/Library/Homebrew/cask/lib/hbc/cli/reinstall.rb
+++ b/Library/Homebrew/cask/lib/hbc/cli/reinstall.rb
@@ -9,7 +9,7 @@ module Hbc
if cask.installed?
# use copy of cask for uninstallation to avoid 'No such file or directory' bug
- installed_cask = cask;
+ installed_cask = cask
latest_installed_version = installed_cask.timestamped_versions.last
unless latest_installed_version.nil?