Skip to content

Commit

Permalink
Bug 1810274 - correct typo in update action move-dir;r=tjr
Browse files Browse the repository at this point in the history
  • Loading branch information
na-g committed Jan 17, 2023
1 parent bb7533e commit 6eca620
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/mozbuild/mozbuild/vendor/moz_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ def __call__(self, values):
for v in values:
if "action" not in v:
raise Invalid("All file-update entries must specify a valid action")
if v["action"] in ["copy-file", "move-file", "movie-dir"]:
if v["action"] in ["copy-file", "move-file", "move-dir"]:
if "from" not in v or "to" not in v or len(v.keys()) != 3:
raise Invalid(
"%s action must (only) specify 'from' and 'to' keys"
Expand Down

0 comments on commit 6eca620

Please sign in to comment.