Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Frontend.XF.GTK: different exitCode on root #257

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/GWallet.Backend/Config.fs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ module Config =
let IsMacPlatform() =
RuntimeInformation.IsOSPlatform OSPlatform.OSX

let IsLinuxPlatform() =
RuntimeInformation.IsOSPlatform OSPlatform.Linux

let GetMonoVersion(): Option<Version> =
FSharpUtil.option {
// this gives None on MS.NET (e.g. UWP/WPF)
Expand Down
4 changes: 4 additions & 0 deletions src/GWallet.Frontend.XF.Gtk/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ module Main =
let main argv =
match argv.Length with
| 0 ->
if GWallet.Backend.Config.IsLinuxPlatform() && Environment.UserName = "root" then
Console.Error.WriteLine "Running the GTK GUI as root is not supported"
Environment.Exit 1

NormalStartWithNoParameters()
| 1 when argv.[0] = "--version" ->
Console.WriteLine (SPrintF1 "geewallet v%s" VersionHelper.CURRENT_VERSION)
Expand Down
Loading