I’m trying to compile aosp in CircleCi but it is constantly showing this error “command lunch not found”.
Please fix it.
Any help??
Hi @stupid-kid-af,
I looked up your build, and it appears you’re using a custom Docker image.
The likely cause of the error you’re getting is that the lunch
package is not installed on your image.
I suggest adding the following step before attempting to run the lunch
command:
- run:
name: Install Lunch
command: sudo apt-get update -y && apt-get install -y lunch
Let me know if this helps.