From e95cbc0395043d9ca20fd2d8409856d54b514c00 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Thu, 14 Apr 2016 21:18:02 -0400 Subject: [PATCH] plugin: make vagrant sshfs a primary command Making it a primary command will enable it to be listed in the output when `vagrant --help` is called. Fixes #16 --- lib/vagrant-sshfs/plugin.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant-sshfs/plugin.rb b/lib/vagrant-sshfs/plugin.rb index 17518eb..8471f43 100644 --- a/lib/vagrant-sshfs/plugin.rb +++ b/lib/vagrant-sshfs/plugin.rb @@ -15,7 +15,7 @@ class Plugin < Vagrant.plugin("2") SyncedFolder end - command("sshfs", primary: false) do + command("sshfs", primary: true) do require_relative "command" Command::SSHFS end