We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 942c88c commit f35409dCopy full SHA for f35409d
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@zen-browser/surfer",
3
- "version": "1.13.0",
+ "version": "1.13.1",
4
"description": "Simplifying building firefox forks!",
5
"main": "index.js",
6
"bin": {
src/commands/init.ts
@@ -36,6 +36,13 @@ export const init = async (directory: Command | string): Promise<void> => {
36
37
version = version.trim().replace(/\\n/g, '')
38
39
+ if (process.env.ZEN_DOWNLOAD_DONT_INIT_GIT === '1') {
40
+ log.info(
41
+ 'Skipping git initialization as ZEN_DOWNLOAD_DONT_INIT_GIT is set to 1'
42
+ )
43
+ return
44
+ }
45
+
46
// TODO: Use bash on windows, this may significantly improve performance.
47
// Still needs testing though
48
log.info('Initializing git, this may take some time')
0 commit comments