Skip to content

Commit

Permalink
test2
Browse files Browse the repository at this point in the history
  • Loading branch information
lahma committed Jun 24, 2023
1 parent fbd3c6e commit 1d278ae
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,11 @@ protected override void OnBuildInitialized()
.OnlyWhenDynamic(() => RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
.Executes(() =>
{
//ProcessTasks.StartProcess("sudo", "apt update");
ProcessTasks.StartProcess("sudo", "apt install -y fonts-noto-color-emoji");
ProcessTasks.StartProcess("sudo", "fc-cache -f -v");
ProcessTasks.StartProcess("mkdir", "-p /usr/local/share/fonts");
ProcessTasks.StartProcess("cp", "/usr/share/fonts/truetype/noto/NotoColorEmoji.ttf /usr/local/share/fonts/");
ProcessTasks.StartProcess("chmod", "644 /usr/local/share/fonts/NotoColorEmoji.ttf");
ProcessTasks.StartProcess("fc-cache", "-fv");
});

Target Pack => _ => _
Expand Down

0 comments on commit 1d278ae

Please sign in to comment.