We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 952e9ab commit 17c1e5cCopy full SHA for 17c1e5c
release.pl
@@ -11,10 +11,12 @@
11
12
my $DRY_RUN;
13
my $SKIP_TESTS;
14
+my $REPOSITORY = 'origin';
15
16
GetOptions(
17
'n|dry-run|just-print' => \$DRY_RUN,
18
'T|skip-tests' => \$SKIP_TESTS,
19
+ 'repository' => \$REPOSITORY,
20
)
21
or die "usage: $0 [-n]\n";
22
@@ -182,7 +184,9 @@ ($;@)
182
184
}
183
185
186
-
187
+# Fetch the release branch. This is needed on CI
188
+# where only the current branch is available.
189
+git fetch => $REPOSITORY, 'release';
190
191
my @new_files = (
192
'github-keygen',
0 commit comments