Closed jmasukawa closed 7 months ago
Sorry about that! I'm wondering if that's because I implemented the migration/change on my mac?
Sorry about that! I'm wondering if that's because I implemented the migration/change on my mac?
@Philmod ahh that explains a lot. no problem! it's good to catch this experience, since if the community tries to develop on the API they will hit similar things, when coming from different OS.
we talked about it internally, and we think the right answer is to have a public docker container for development on the API so everything is consistent.
Issues:
hatch run install
: properly generate the CLI executable. http://b/333027353hatch run compile
(GeneratePythonLibrary.sh
) doesn't finish, and we're left with a mess of diffs.Fix:
sed -i .bak
doesn't work for all versions ofsed
, and it was crashing the script, preventing the full compile flow from running.sed -i.bak
(without the space). Removing the.bak
functionality allowed the script to finish.Screen capture of the flow after this change was made:
note at the end there's no generated diffs compared to what's checked in! 🙌