nix: fix conditional that selects .env.e2e for ABI=x86 builds
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
618b1f81e2
commit
9ce786c9fb
|
@ -32,8 +32,8 @@ let
|
|||
name = "status-react-build-${baseName}";
|
||||
|
||||
envFileName =
|
||||
if (elem buildType ["release" "nightly"]) then ".env.${buildType}"
|
||||
else if androidAbiInclude == "x86" then ".env.e2e"
|
||||
if androidAbiInclude == "x86" then ".env.e2e"
|
||||
else if (elem buildType ["release" "nightly"]) then ".env.${buildType}"
|
||||
else if (elem buildType ["pr" "manual"]) then ".env.jenkins"
|
||||
else ".env";
|
||||
|
||||
|
|
Loading…
Reference in New Issue