Skip to content

Commit f2afd59

Browse files
committed
Tidy up
1 parent 936e0d0 commit f2afd59

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

Nake.csx

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,6 @@ void Push(string package) => Exec("dotnet",
103103
$@"nuget push {ReleasePackagesPath}/{package}.{Version}.nupkg " +
104104
"-k %NuGetApiKey% -s https://nuget.org/ --skip-duplicate");
105105

106-
void Mirror(string source, string destination)
107-
{
108-
foreach (string dir in Directory.GetDirectories(source, "*", SearchOption.AllDirectories))
109-
Directory.CreateDirectory(dir.Replace(source, destination));
110-
111-
foreach (string file in Directory.GetFiles(source, "*.*", SearchOption.AllDirectories))
112-
File.Copy(file, file.Replace(source, destination), true);
113-
}
114-
115106

116107
/// Restores build-time packages and 3rd party dependencies used in demo projects
117108
[Nake] void Restore(bool packagesOnly = false)

0 commit comments

Comments
 (0)