Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix names of dirs: "v.200.x" -> "v0.200.x" #4435

Merged
merged 1 commit into from Apr 18, 2023
Merged

Conversation

gkz
Copy link
Contributor

@gkz gkz commented Apr 18, 2023

Fix issue from #4432

Rename dir "v.200.x" -> "v0.200.x"

Commands:

ag -g '^.*v\.200' | ag '^.*v\.200.x' --only | sort | uniq > files
cat files | while read file; do newname=`echo "$file" | sed 's/v\.200/v0.200/'`; mv "$file" "$newname"; done

check if any dirs missed:

ag -g 'v\.200' 
# no results

@gantoine gantoine merged commit 02d4f1d into flow-typed:master Apr 18, 2023
2 of 4 checks passed
@Brianzchen
Copy link
Member

🙏 my apologies

Brianzchen added a commit that referenced this pull request Apr 18, 2023
* Updates defs to not use deprecated `*` type, and rename `$Partial` to `Partial` (#4432)

* Fix names of dirs: "v.200.x" -> "v0.200.x" (#4435)

* delete overlaps

---------

Co-authored-by: George Zahariev <1222691+gkz@users.noreply.github.com>
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.

None yet

4 participants