Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/fuchsia/build_fuchsia_artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def BuildBucket(runtime_mode, arch, product):
CopyToBucket(out_dir, bucket_dir, product)


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


Expand Down