androidenv: fix patching linux prebuilt binaries

This has been broken by following PR due to typo:
https://github.com/NixOS/nixpkgs/pull/195752

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-02-09 12:04:46 +01:00
parent 6ccc4a59c3
commit af7c4c68bf
No known key found for this signature in database
GPG key ID: FE65CD384D5BF7B4

View file

@ -49,7 +49,7 @@ deployAndroidPackage {
done
# Patch executables
if [ -d prebuild/linux-x86_64 ]; then
if [ -d prebuilt/linux-x86_64 ]; then
autoPatchelf prebuilt/linux-x86_64
fi