diff --git a/app/static/icon.icns b/app/static/logos/icon-logo.icns similarity index 100% rename from app/static/icon.icns rename to app/static/logos/icon-logo.icns diff --git a/app/static/icon.ico b/app/static/logos/icon-logo.ico similarity index 100% rename from app/static/icon.ico rename to app/static/logos/icon-logo.ico diff --git a/script/build b/script/build index fc151e4e81..a63b50b636 100755 --- a/script/build +++ b/script/build @@ -36,7 +36,7 @@ const options = { arch: 'x64', asar: false, // TODO: Probably wanna enable this down the road. out: path.join(projectRoot, 'dist'), - icon: path.join(projectRoot, 'app', 'static', 'icon'), + icon: path.join(projectRoot, 'app', 'static', 'logos', 'icon-logo'), dir: outRoot, overwrite: true, tmpdir: false, diff --git a/script/package b/script/package index 03550b5aa3..4167e2919f 100644 --- a/script/package +++ b/script/package @@ -37,7 +37,7 @@ function packageWindows () { cp.execSync(`powershell ${setupCertificatePath}`) } - const iconSource = path.join(__dirname, '..', 'app', 'static', 'icon.ico') + const iconSource = path.join(__dirname, '..', 'app', 'static', 'logos', 'icon-logo.ico') if (!fs.existsSync(iconSource)) { console.error(`expected setup icon not found at location: ${iconSource}`) @@ -45,7 +45,7 @@ function packageWindows () { } // TODO: change this when the repository is public - // 'https://raw.githubusercontent.com/desktop/desktop/master/app/static/icon.ico' + // 'https://raw.githubusercontent.com/desktop/desktop/master/app/static/logos/icon-logo.ico' const iconUrl = 'https://www.dropbox.com/s/6n9wuyqhy9xhow4/icon.ico?dl=1' const options = {