Skip to content

Commit

Permalink
Fix type in build_fuchsia_artifacts (flutter#14452)
Browse files Browse the repository at this point in the history
Pakcage -> Package. Spotted while running over the CIPD package build
with someone.
  • Loading branch information
cbracken authored Dec 12, 2019
1 parent f650bca commit 4275b49
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 4275b49

Please sign in to comment.