summaryrefslogtreecommitdiffstats
path: root/tools/ideviceprovision.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ideviceprovision.c')
-rw-r--r--tools/ideviceprovision.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/tools/ideviceprovision.c b/tools/ideviceprovision.c
index 7e8367a..4b96821 100644
--- a/tools/ideviceprovision.c
+++ b/tools/ideviceprovision.c
@@ -50,8 +50,10 @@ static void print_usage(int argc, char **argv)
50 50
51 name = strrchr(argv[0], '/'); 51 name = strrchr(argv[0], '/');
52 printf("Usage: %s [OPTIONS] COMMAND\n", (name ? name + 1: argv[0])); 52 printf("Usage: %s [OPTIONS] COMMAND\n", (name ? name + 1: argv[0]));
53 printf("Manage provisioning profiles on a device.\n\n"); 53 printf("\n");
54 printf(" Where COMMAND is one of:\n"); 54 printf("Manage provisioning profiles on a device.\n");
55 printf("\n");
56 printf("Where COMMAND is one of:\n");
55 printf(" install FILE\tInstalls the provisioning profile specified by FILE.\n"); 57 printf(" install FILE\tInstalls the provisioning profile specified by FILE.\n");
56 printf(" \tA valid .mobileprovision file is expected.\n"); 58 printf(" \tA valid .mobileprovision file is expected.\n");
57 printf(" list\t\tGet a list of all provisioning profiles on the device.\n"); 59 printf(" list\t\tGet a list of all provisioning profiles on the device.\n");
@@ -64,14 +66,16 @@ static void print_usage(int argc, char **argv)
64 printf(" remove UUID\tRemoves the provisioning profile identified by UUID.\n"); 66 printf(" remove UUID\tRemoves the provisioning profile identified by UUID.\n");
65 printf(" remove-all\tRemoves all installed provisioning profiles.\n"); 67 printf(" remove-all\tRemoves all installed provisioning profiles.\n");
66 printf(" dump FILE\tPrints detailed information about the provisioning profile\n"); 68 printf(" dump FILE\tPrints detailed information about the provisioning profile\n");
67 printf(" \tspecified by FILE.\n\n"); 69 printf(" \tspecified by FILE.\n");
68 printf(" The following OPTIONS are accepted:\n"); 70 printf("\n");
71 printf("The following OPTIONS are accepted:\n");
69 printf(" -d, --debug enable communication debugging\n"); 72 printf(" -d, --debug enable communication debugging\n");
70 printf(" -u, --udid UDID target specific device by UDID\n"); 73 printf(" -u, --udid UDID target specific device by UDID\n");
71 printf(" -x, --xml print XML output when using the 'dump' command\n"); 74 printf(" -x, --xml print XML output when using the 'dump' command\n");
72 printf(" -h, --help prints usage information\n"); 75 printf(" -h, --help prints usage information\n");
73 printf("\n"); 76 printf("\n");
74 printf("Homepage: <" PACKAGE_URL ">\n"); 77 printf("Homepage: <" PACKAGE_URL ">\n");
78 printf("Bug Reports: <" PACKAGE_BUGREPORT ">\n");
75} 79}
76 80
77enum { 81enum {