Skip to content
This repository has been archived by the owner on Sep 13, 2021. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/v0.2.8' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
RLittlesII committed Nov 14, 2018
2 parents 334b86c + df4aeb9 commit 57c6578
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Xamarin.Recipe/Content/android.cake
Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,10 @@ Task("Copy-Apk")

Verbose("Build Output Directory: {0}", buildOutputDirectory);

// CopyDirectory(buildOutputDirectory, MakeAbsolute(BuildParameters.Paths.Directories.DroidArtifactDirectoryPath));

Verbose("Apk Path: {0}", buildOutputDirectory + "/*.apk");

var files = GetFiles(buildOutputDirectory + "/*.apk")
.FirstOrDefault(x => x.GetFilename().ToString().ToLower().Contains("signed"));
.Where(x => x.GetFilename().ToString().ToLower().Contains("signed"));

CopyFiles(files, MakeAbsolute(BuildParameters.Paths.Directories.DroidArtifactDirectoryPath));
});

0 comments on commit 57c6578

Please sign in to comment.