diff options
author | Justin Clark-Casey (justincc) | 2010-12-18 00:57:09 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-12-18 00:57:09 +0000 |
commit | bf9555eaee34da11bba3d191b3ba37e2a681fde7 (patch) | |
tree | f71831805c0a7724577e8d264273503be1915384 /OpenSim | |
parent | Raise maximum iar version that master can load to 1.x, so that it can load it... (diff) | |
download | opensim-SC_OLD-bf9555eaee34da11bba3d191b3ba37e2a681fde7.zip opensim-SC_OLD-bf9555eaee34da11bba3d191b3ba37e2a681fde7.tar.gz opensim-SC_OLD-bf9555eaee34da11bba3d191b3ba37e2a681fde7.tar.bz2 opensim-SC_OLD-bf9555eaee34da11bba3d191b3ba37e2a681fde7.tar.xz |
minor: add [-p|--profile=<url>] to usage line that pops up if save iar console command isn't valid
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs index 1e18095..79bd39e 100644 --- a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs | |||
@@ -124,7 +124,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver | |||
124 | 124 | ||
125 | scene.AddCommand( | 125 | scene.AddCommand( |
126 | this, "save iar", | 126 | this, "save iar", |
127 | "save iar <first> <last> <inventory path> <password> [--p|-profile=<url>] [<IAR path>]", | 127 | "save iar [--p|-profile=<url>] <first> <last> <inventory path> <password> [<IAR path>]", |
128 | "Save user inventory archive (IAR).", | 128 | "Save user inventory archive (IAR).", |
129 | "<first> is the user's first name." + Environment.NewLine | 129 | "<first> is the user's first name." + Environment.NewLine |
130 | + "<last> is the user's last name." + Environment.NewLine | 130 | + "<last> is the user's last name." + Environment.NewLine |
@@ -358,7 +358,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver | |||
358 | if (mainParams.Count < 6) | 358 | if (mainParams.Count < 6) |
359 | { | 359 | { |
360 | m_log.Error( | 360 | m_log.Error( |
361 | "[INVENTORY ARCHIVER]: usage is load iar [--merge] <first name> <last name> <inventory path> <user password> [<load file path>]"); | 361 | "[INVENTORY ARCHIVER]: usage is load iar [--merge] <first name> <last name> <inventory path> <user password> [<load file path>]"); |
362 | return; | 362 | return; |
363 | } | 363 | } |
364 | 364 | ||
@@ -404,7 +404,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver | |||
404 | if (mainParams.Count < 6) | 404 | if (mainParams.Count < 6) |
405 | { | 405 | { |
406 | m_log.Error( | 406 | m_log.Error( |
407 | "[INVENTORY ARCHIVER]: usage is save iar <first name> <last name> <inventory path> <user password> [<save file path>]"); | 407 | "[INVENTORY ARCHIVER]: usage is save iar [--p|-profile=<url>] <first name> <last name> <inventory path> <user password> [<save file path>]"); |
408 | return; | 408 | return; |
409 | } | 409 | } |
410 | 410 | ||