Cloning and using a repository on build
Hello, i'm struggling a little but to build a rust app in the rust build container. I want to clone a git repository,
cd
into it and run build, however it looks like the cd
command is not working as i would expect, and also i cannot clone the repository to current working folder because it is not empty. What should be the recommended way to do this?
2 Replies
Every command is run in separate shell, so you need to run
cd xxx && cargo build
Or
Oh, yeah havent thought of that, thank you