fetch: allow enabling --simulate
parent
445ea07220
commit
a2a5cd9c69
|
@ -106,6 +106,9 @@ static int option_parse_global(void *ctx, struct apk_db_options *dbopts, int opt
|
|||
case 0x101:
|
||||
apk_flags |= APK_PROGRESS;
|
||||
break;
|
||||
case 0x104:
|
||||
apk_flags |= APK_SIMULATE;
|
||||
break;
|
||||
case 0x110:
|
||||
apk_flags &= ~APK_PROGRESS;
|
||||
break;
|
||||
|
|
|
@ -93,8 +93,9 @@ static int option_parse_applet(void *ctx, struct apk_db_options *dbopts, int opt
|
|||
static const struct apk_option options_applet[] = {
|
||||
{ 'L', "link", "Create hard links if possible" },
|
||||
{ 'R', "recursive", "Fetch the PACKAGE and all its dependencies" },
|
||||
{ 's', "stdout",
|
||||
"Dump the .apk to stdout (incompatible with -o, -R, --progress)" },
|
||||
{ 0x104, "simulate", "Show what would be done without actually doing it" },
|
||||
{ 's', "stdout", "Dump the .apk to stdout (incompatible "
|
||||
"with -o, -R, --progress)" },
|
||||
{ 'o', "output", "Directory to place the PACKAGEs to",
|
||||
required_argument, "DIR" },
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue