Page MenuHomePhabricator

[native] Clean up `detect_abis.sh`
ClosedPublic

Authored by abosh on Aug 16 2022, 1:02 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Jun 14, 9:37 PM
Unknown Object (File)
Wed, Jun 12, 11:49 AM
Unknown Object (File)
Mon, Jun 3, 11:03 AM
Unknown Object (File)
May 27 2024, 2:35 AM
Unknown Object (File)
May 27 2024, 2:35 AM
Unknown Object (File)
May 27 2024, 2:35 AM
Unknown Object (File)
May 27 2024, 2:34 AM
Unknown Object (File)
May 15 2024, 10:07 AM

Details

Summary

Relevant Linear issue here. D4717 was my original code to fix this, but it ended up breaking yarn react-native run-android.

Turns out the problematic code was writing if [[ ! $found ]] instead of if [[ "$found" = false ]] since in bash ! returns true for any nonempty string (and found is nonempty even when it's equal to false). Once I changed that, yarn react-native run-android builds successfully.

Test Plan

Along with ShellCheck, ran yarn react-native run-android successfully.

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

native/android/app/bash/detect_abis.sh
12–17 ↗(On Diff #15680)

This code loops through ABIS to see if ABI is in there already, setting found to true if it's found.

19–20 ↗(On Diff #15680)

This is where the code was breaking yarn react-native run-android before. Now that found is compared to the string false instead of using [[ ! $found ]], ABI is only added to ABIS if it wasn't found in there before.

Would prefer to use associative arrays, but can't guarantee bash4+ is available until after move to nix dev

native/android/app/bash/detect_abis.sh
19–20 ↗(On Diff #15680)

You should always quote a value when testing, as if it's unset, then it will likely not be what you intended [[ -z "$found" ]];

This revision is now accepted and ready to land.Aug 16 2022, 4:37 PM
native/android/app/bash/detect_abis.sh
19–20 ↗(On Diff #15680)

Ah I missed this! Thank you.

Would prefer to use associative arrays, but can't guarantee bash4+ is available until after move to nix dev

Same :( Associative arrays are so much cleaner

Quote false in [[ ]].

This revision was landed with ongoing or failed builds.Aug 16 2022, 6:10 PM
This revision was automatically updated to reflect the committed changes.