Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 4275b49

Browse files
authored
Fix type in build_fuchsia_artifacts (#14452)
Pakcage -> Package. Spotted while running over the CIPD package build with someone.
1 parent f650bca commit 4275b49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/fuchsia/build_fuchsia_artifacts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def BuildBucket(runtime_mode, arch, product):
155155
CopyToBucket(out_dir, bucket_dir, product)
156156

157157

158-
def ProcessCIPDPakcage(upload, engine_version):
158+
def ProcessCIPDPackage(upload, engine_version):
159159
# Copy the CIPD YAML template from the source directory to be next to the bucket
160160
# we are about to package.
161161
cipd_yaml = os.path.join(_script_dir, 'fuchsia.cipd.yaml')
@@ -278,7 +278,7 @@ def main():
278278
if args.engine_version is None:
279279
print('--upload requires --engine-version to be specified.')
280280
return 1
281-
ProcessCIPDPakcage(args.upload, args.engine_version)
281+
ProcessCIPDPackage(args.upload, args.engine_version)
282282
return 0
283283

284284

0 commit comments

Comments
 (0)