force checkout and fetch

This commit is contained in:
Aaron Bieber 2023-06-06 18:46:06 -06:00
parent e162059f1d
commit fe2e75da63
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@
in {
pr-status = pkgs.perlPackages.buildPerlPackage {
pname = "pr-status";
version = "v0.0.2";
version = "v0.0.3";
src = ./.;
buildInputs = with pkgs; [ makeWrapper ];
propagatedBuildInputs = with pkgs.perlPackages; [

View File

@ -47,8 +47,8 @@ Mojo::IOLoop->recurring(
sub get_commit {
my $pr = shift;
$repo->command( 'fetch', 'origin', "pull/${pr}/head:pr-status-${pr}" );
$repo->command( 'checkout', "pr-status-$pr" );
$repo->command( 'fetch', '-f', 'origin', "pull/${pr}/head:pr-status-${pr}" );
$repo->command( 'checkout', '-f', "pr-status-$pr" );
my $commit = $repo->command( 'rev-parse', 'HEAD' );
my $log = $repo->command( 'log', '-n', '1', '--pretty=format:%s' );
$repo->command( 'checkout', 'master' );