bump version to 1.9.8 and remove git initialization check for official builds
Some checks failed
CI / general (push) Has been cancelled

This commit is contained in:
mr. M 2025-01-10 00:51:53 +01:00
parent 8ced305586
commit 6a07b88f97
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
2 changed files with 1 additions and 7 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@zen-browser/surfer",
"version": "1.9.7",
"version": "1.9.8",
"description": "Simplifying building firefox forks!",
"main": "index.js",
"bin": {

View file

@ -36,12 +36,6 @@ export const init = async (directory: Command | string): Promise<void> => {
version = version.trim().replace(/\\n/g, '')
const brandingKey = dynamicConfig.get('brand')
if (brandingKey !== 'unofficial') {
log.warning("NOT initializing git, as this is an official build");
return;
}
// TODO: Use bash on windows, this may significantly improve performance.
// Still needs testing though
log.info('Initializing git, this may take some time')