diff --git a/.github/release-nest-v3 b/.github/release-nest-v3 index d8263ee..e440e5c 100644 --- a/.github/release-nest-v3 +++ b/.github/release-nest-v3 @@ -1 +1 @@ -2 \ No newline at end of file +3 \ No newline at end of file diff --git a/debian/changelog b/debian/changelog index 12554ca..3c2401e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +falcon (1.0.3-101pika1) pika; urgency=low + + * Fix international + + -- Ward Nakchbandi Sat, 10 Dec 2022 13:48:00 +0300 + falcon (1.0.2-101pika1) pika; urgency=low * Fix Intel diff --git a/main.go b/main.go index 79c7735..56c752e 100644 --- a/main.go +++ b/main.go @@ -194,6 +194,7 @@ func GetPPStatusAndHighestCores() (bool, []CoreFreq, bool, []int, error) { g.Go(func() error { cmd := exec.CommandContext(ctx, "lscpu", "-e", "-J") + cmd.Env = append(cmd.Env, "LANG=en_GB.utf8") output, err := cmd.Output() if err != nil { return fmt.Errorf("failed to run lscpu command: %w", err)