From da171f8e5c9c596538bd8bf780b671ab746547c0 Mon Sep 17 00:00:00 2001 From: Paul Niezborala Date: Wed, 5 Dec 2018 16:03:29 +0100 Subject: [PATCH] Change target_directory option to -d/--directory as -t was already taken by --trace --- lib/u3d/commands_generator.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/u3d/commands_generator.rb b/lib/u3d/commands_generator.rb index 882faf77..fbb1092b 100644 --- a/lib/u3d/commands_generator.rb +++ b/lib/u3d/commands_generator.rb @@ -113,7 +113,7 @@ def run command :shortcuts do |c| c.syntax = 'u3d shortcuts [-u | --unity_version ] [-t | --target ]' c.option '-u', '--unity_version STRING', String, 'Creates a shortcut for this version of Unity only.' - c.option '-t', '--target_directory STRING', String, 'Specifies which directory to create the shortcuts in' + c.option '-d', '--directory STRING', String, 'Specifies which directory to create the shortcuts in' c.example 'Create a shortcut for all installed versions on the Desktop', 'u3d shortcuts -t ~/Desktop' c.example 'Create a shortcut for Unity 5.6.0f3', 'u3d shortcuts -u 5.6.0f3' c.summary = 'Create shortcuts for installed versions of Unity'