1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-14 03:39:53 +03:00
aports/testing/flutter/git-revision.patch.engine
2023-08-03 12:29:43 +00:00

22 lines
431 B
Text

--- a/flutter/build/git_revision.py
+++ b/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():