Skip to content

Commit

Permalink
Remove PFiles64 wrapper directory
Browse files Browse the repository at this point in the history
  • Loading branch information
zmughal committed Oct 28, 2023
1 parent efd3ab8 commit 88ccb38
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions alienfile
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,13 @@ sub do_binary {
patch sub {
my $cwd = Path::Tiny->cwd;
$_->remove for $cwd->children( qr/\.msi$/ );

my $PFiles = $cwd->child('PFiles64');
if( -d $PFiles ) {
File::Copy::Recursive::rmove( "$PFiles/*", $cwd );
$PFiles->remove_tree;
}

my $Meson = $cwd->child('Meson');
$Meson->child('ninja.exe')->remove;
File::Copy::Recursive::rmove( "$Meson/*", $cwd );
Expand Down

0 comments on commit 88ccb38

Please sign in to comment.