File tree Expand file tree Collapse file tree 2 files changed +0
-32
lines changed Expand file tree Collapse file tree 2 files changed +0
-32
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -152,25 +152,6 @@ def fetch_dawn_source(hash: str) -> None:
152152 except subprocess .CalledProcessError as e :
153153 raise GitOperationError (f"Failed to checkout Dawn repository: { e .stderr } " )
154154
155- # Apply the patch to the Dawn source
156- print ("Applying patch to Dawn source..." )
157- try :
158- subprocess .run (
159- [
160- "git" ,
161- "apply" ,
162- "--ignore-space-change" ,
163- "--ignore-whitespace" ,
164- "../dawn_source.patch" ,
165- ],
166- cwd = str (get_dawn_path ()),
167- check = True ,
168- capture_output = True ,
169- text = True ,
170- )
171- except subprocess .CalledProcessError as e :
172- raise GitOperationError (f"Failed to apply patch to Dawn repository: { e .stderr } " )
173-
174155 # Verify Dawn tools directory and fetch dawn dependencies
175156 dawn_source_tools = dest_dir / "tools" / "fetch_dawn_dependencies.py"
176157 if not dawn_source_tools .exists ():
You can’t perform that action at this time.
0 commit comments