Skip to content

Fix "No such file" error on "make normalize_yaml"#7507

Merged
aduth merged 1 commit intomainfrom
aduth-fix-normalize-yaml-error
Dec 19, 2022
Merged

Fix "No such file" error on "make normalize_yaml"#7507
aduth merged 1 commit intomainfrom
aduth-fix-normalize-yaml-error

Conversation

@aduth
Copy link
Contributor

@aduth aduth commented Dec 16, 2022

🛠 Summary of changes

Resolves an error which occurs when running make normalize_yaml.

Before:

$ make normalize_yaml
# ...
find ./config/locales/telephony "./config/locales/telephony*" -type f | xargs yarn normalize-yaml --disable-smart-punctuation
find: ./config/locales/telephony*: No such file or directory
yarn run v1.22.19

After:

$ make normalize_yaml
# ...
find ./config/locales/telephony -type f | xargs yarn normalize-yaml --disable-smart-punctuation
yarn run v1.22.19

@aduth aduth merged commit 10cf687 into main Dec 19, 2022
@aduth aduth deleted the aduth-fix-normalize-yaml-error branch December 19, 2022 14:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants