mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
tails: fix detection
This commit is contained in:
parent
dc3441f258
commit
e956b4ff15
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ bool TailsOS::detect()
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
QByteArray data = fileOpen("/etc/os-release");
|
QByteArray data = fileOpen("/etc/os-release");
|
||||||
QRegularExpression re("TAILS_PRODUCT_NAME=\"Tails\"");
|
QRegularExpression re("NAME=\"Tails\"");
|
||||||
QRegularExpressionMatch os_match = re.match(data);
|
QRegularExpressionMatch os_match = re.match(data);
|
||||||
bool matched = os_match.hasMatch();
|
bool matched = os_match.hasMatch();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue