Standardizing for PKGBUILD

This commit is contained in:
DarkFeather
2019-04-30 15:53:55 -05:00
parent e7c96f98bb
commit 4b383874b6
8 changed files with 291 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ namespace AniNIX.Shared {
String line;
while (true) {
line = fileReader.ReadLine();
ReportMessage.Log(Verbosity.Verbose,String.Format("Read line: {0}",line));
if (line == null) break;
//Ignore comments prefixed with '#'
if (line.StartsWith("#")) continue;
@@ -57,6 +58,7 @@ namespace AniNIX.Shared {
}
return foundEntries;
}
/// <summary>
/// If a conf section doesn't use key=value syntax, use this to grab the lines instead.
/// </summary>