1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-13 03:09:51 +03:00
aports/testing/flutter/git-revision.patch
2025-06-12 10:48:23 +00:00

44 lines
931 B
Diff

--- a/engine/src/flutter/build/git_revision.py
+++ b/engine/src/flutter/build/git_revision.py
@@ -22,18 +22,7 @@
if not os.path.exists(repository):
raise IOError('path does not exist')
- git = 'git'
- if is_windows():
- git = 'git.bat'
- version = subprocess.check_output([
- git,
- '-C',
- repository,
- 'rev-parse',
- 'HEAD',
- ])
-
- return str(version.strip(), 'utf-8')
+ return '0' * 41
def main():
--- ./engine/src/flutter/tools/gn.orig
+++ ./engine/src/flutter/tools/gn
@@ -286,18 +286,7 @@
if not os.path.exists(repository):
raise IOError('path does not exist')
- git = 'git'
- if sys.platform.startswith(('cygwin', 'win')):
- git = 'git.bat'
- version = subprocess.check_output([
- git,
- '-C',
- repository,
- 'rev-parse',
- 'HEAD',
- ])
-
- return str(version.strip(), 'utf-8')
+ return '0' * 41
def setup_git_versions():