aboutsummaryrefslogtreecommitdiffstats
path: root/install.rb
diff options
context:
space:
mode:
Diffstat (limited to 'install.rb')
-rw-r--r--install.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.rb b/install.rb
index 0a1defe..fa9dcdf 100644
--- a/install.rb
+++ b/install.rb
@@ -8,7 +8,7 @@ if File.exists?(main_app_path)
puts "WARNING: #{main_app_path} already exists, the symbolic link won't be created"
else # Create symlink
begin
- print "Creating symbolink link from #{main_app_path} to #{plugin_path}... "
+ print "Creating symbolic link from #{main_app_path} to #{plugin_path}... "
File.symlink(plugin_path, main_app_path)
puts "done"
rescue NotImplementedError