remove getDatabaseFromRegex
This commit is contained in:
parent
82a854dd8b
commit
65b15f657d
@ -118,21 +118,10 @@ public class PacserverUtils {
|
|||||||
public List<String> databasesToTransfer = new List<String>();
|
public List<String> databasesToTransfer = new List<String>();
|
||||||
public void filterDiffOutputForDatabases() {
|
public void filterDiffOutputForDatabases() {
|
||||||
foreach (string database in diffOfPackagesOrDatabases) {
|
foreach (string database in diffOfPackagesOrDatabases) {
|
||||||
databasesToTransfer.Add(getDatabaseFromRegex(database, @"\/(?:[\w.-]+\/)*[\w.-]+(?:\.\w+)*\/*db")); // https://regex101.com/r/Wm5M0P/1
|
databasesToTransfer.Add(Regex.Match(database, @"\/(?:[\w.-]+\/)*[\w.-]+(?:\.\w+)*\/*db").Value); // https://regex101.com/r/Wm5M0P/1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public string getDatabaseFromRegex(string input, string pattern) {
|
|
||||||
string match = string.Empty;
|
|
||||||
MatchCollection matchCollection = Regex.Matches(input, pattern);
|
|
||||||
|
|
||||||
foreach (Match matches in matchCollection) {
|
|
||||||
match = matches.Value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return match;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<String> newerPackagesAndDatabases = new List<String>();
|
private static List<String> newerPackagesAndDatabases = new List<String>();
|
||||||
public async void transferPacmanCache() {
|
public async void transferPacmanCache() {
|
||||||
HttpClient client = new HttpClient();
|
HttpClient client = new HttpClient();
|
||||||
|
Loading…
Reference in New Issue
Block a user