1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +02:00

Fix paths

This commit is contained in:
Laurent Cozic 2020-11-05 17:18:38 +00:00
parent 6856f84faa
commit c1e2fd125c
3 changed files with 9 additions and 9 deletions

4
.gitignore vendored
View File

@ -45,8 +45,8 @@ QtClient/data/
sparse_test.php sparse_test.php
sync_staging.sh sync_staging.sh
TODO.md TODO.md
Tools/commit_hook.txt packages/tools/commit_hook.txt
Tools/github_oauth_token.txt packages/tools/github_oauth_token.txt
lerna-debug.log lerna-debug.log
# AUTO-GENERATED - EXCLUDED TYPESCRIPT BUILD # AUTO-GENERATED - EXCLUDED TYPESCRIPT BUILD

View File

@ -228,33 +228,33 @@ const operations = [
{ {
source: 5, source: 5,
dest: 'Tools/PortableAppsLauncher/App/AppInfo/appicon.ico', dest: 'packages/tools/PortableAppsLauncher/App/AppInfo/appicon.ico',
}, },
{ {
source: 2, source: 2,
dest: 'Tools/PortableAppsLauncher/App/AppInfo/appicon_16.png', dest: 'packages/tools/PortableAppsLauncher/App/AppInfo/appicon_16.png',
}, },
{ {
source: 3, source: 3,
dest: 'Tools/PortableAppsLauncher/App/AppInfo/appicon_32.png', dest: 'packages/tools/PortableAppsLauncher/App/AppInfo/appicon_32.png',
width: 32, width: 32,
height: 32, height: 32,
}, },
{ {
source: 4, source: 4,
dest: 'Tools/PortableAppsLauncher/App/AppInfo/appicon_75.png', dest: 'packages/tools/PortableAppsLauncher/App/AppInfo/appicon_75.png',
width: 75, width: 75,
height: 75, height: 75,
}, },
{ {
source: 4, source: 4,
dest: 'Tools/PortableAppsLauncher/App/AppInfo/appicon_128.png', dest: 'packages/tools/PortableAppsLauncher/App/AppInfo/appicon_128.png',
width: 128, width: 128,
height: 128, height: 128,
}, },
{ {
source: 4, source: 4,
dest: 'Tools/PortableAppsLauncher/App/AppInfo/Launcher/splash.jpg', dest: 'packages/tools/PortableAppsLauncher/App/AppInfo/Launcher/splash.jpg',
width: 144, width: 144,
height: 144, height: 144,
}, },

View File

@ -29,7 +29,7 @@ async function main() {
console.info(`Created GitHub release: ${release.html_url}`); console.info(`Created GitHub release: ${release.html_url}`);
console.info('GitHub release page: https://github.com/laurent22/joplin/releases'); console.info('GitHub release page: https://github.com/laurent22/joplin/releases');
console.info(`To create changelog: node Tools/git-changelog.js ${version}`); console.info(`To create changelog: node packages/tools/git-changelog.js ${version}`);
} }
main().catch((error) => { main().catch((error) => {