1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-02-01 19:15:01 +02:00

add comment

This commit is contained in:
Laurent Cozic 2021-05-14 14:52:29 +02:00
parent d7ff634f5e
commit 81884cf2ea

View File

@ -3,6 +3,10 @@ import { execCommand2, rootDir, gitPullTry } from './tool-utils';
const mobileDir = `${rootDir}/packages/app-mobile`;
// Note that it will update all the MARKETING_VERSION and
// CURRENT_PROJECT_VERSION fields, including for extensions (such as the
// ShareExtension), which is normally what we want.
// https://github.com/laurent22/joplin/pull/4963
async function updateCodeProjVersions(filePath: string) {
const originalContent = await fs.readFile(filePath, 'utf8');
let newContent = originalContent;