Skip to content

Commit b2f78fb

Browse files
authored
Raspberry Pi 3 compatibility (#124)
* I let compatibility with the Raspberry Pi 3B+ lapse. Installation on a Raspberry Pi 3B+ should now work once again. * Firefox fix for format of 24-hour UTC time mode.
1 parent 32f677f commit b2f78fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/src/process-util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let userHome = '/home/' + sudoUser;
1212
try {
1313
userHome = (isMacOS ? process.env.HOME :
1414
(isWindows ? process.env.USERPROFILE : execSync(`grep ${sudoUser} /etc/passwd`).toString()
15-
.split(':')[5])) || userHome;
15+
.split(':')[5])).trim() || userHome;
1616
}
1717
catch (err) {
1818
console.error(err);

0 commit comments

Comments
 (0)