my $upstream_branch = "";
my $upstream_tag = "";
my $squash_patches_until = "";
+my $no_patch_export = 0;
my $packaging_dir = "packaging";
my $dist = "tizen";
my $dryrun = 0;
"upstream-branch=s" => \$upstream_branch,
"upstream-tag=s" => \$upstream_tag,
"squash-patches-until=s" => \$squash_patches_until,
+ "no-patch-export" => \$no_patch_export,
"packaging-dir=s" => \$packaging_dir,
"binary=s" => \$binarylist,
"style=s" => \$style,
if (! $packaging_dir eq "") {
push @args, "--packaging-dir=$packaging_dir";
}
+ if ($no_patch_export == 1) {
+ push @args, "--no-patch-export";
+ }
$cmd = join(" ", @args);
return my_system($cmd);
}