@ -39,6 +39,7 @@ const {
getDarwinDirs ,
getLinuxDirs ,
ENTRYPOINT ,
question
} = require ( "./common" ) ;
switch ( process . platform ) {
@ -62,15 +63,14 @@ async function install(installations) {
// Attempt to give flatpak perms
if ( selected . isFlatpak ) {
try {
const { branch } = selected ;
const cwd = process . cwd ( ) ;
const globalCmd = ` flatpak override ${ branch} --filesystem= ${ cwd } ` ;
const userCmd = ` flatpak override --user ${ branch} --filesystem= ${ cwd } ` ;
const globalCmd = ` flatpak override ${ selected. branch} --filesystem= ${ cwd } ` ;
const userCmd = ` flatpak override --user ${ selected. branch} --filesystem= ${ cwd } ` ;
const cmd = selected . location . startsWith ( "/home" )
? userCmd
: globalCmd ;
execSync ( cmd ) ;
console . log ( " Successfully g ave write perms to Discord Flatpak.") ;
console . log ( " G ave write perms to Discord Flatpak.") ;
} catch ( e ) {
console . log ( "Failed to give write perms to Discord Flatpak." ) ;
console . log (
@ -79,6 +79,29 @@ async function install(installations) {
) ;
process . exit ( 1 ) ;
}
const answer = await question (
` Would you like to allow ${ selected . branch } to talk to org.freedesktop.Flatpak? \n ` +
"This is essentially full host access but necessary to spawn git. Without it, the updater will not work\n" +
"Consider using the http based updater (using the gui installer) instead if you want to maintain the sandbox.\n" +
"[y/N]: "
) ;
if ( [ "y" , "yes" , "yeah" ] . includes ( answer . toLowerCase ( ) ) ) {
try {
const globalCmd = ` flatpak override ${ selected . branch } --talk-name=org.freedesktop.Flatpak ` ;
const userCmd = ` flatpak override --user ${ selected . branch } --talk-name=org.freedesktop.Flatpak ` ;
const cmd = selected . location . startsWith ( "/home" )
? userCmd
: globalCmd ;
execSync ( cmd ) ;
console . log ( "Sucessfully gave talk permission" ) ;
} catch ( err ) {
console . error ( "Failed to give talk permission\n" , err ) ;
}
} else {
console . log ( ` Not giving full host access. If you change your mind later, you can run: \n flatpak override ${ selected . branch } --talk-name=org.freedesktop.Flatpak ` ) ;
}
}
for ( const version of selected . versions ) {