mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-04 18:48:43 +08:00
Keep fetch logic if source does not exist
This commit is contained in:
parent
362af48613
commit
b3ad568eda
6
repo.sh
6
repo.sh
@ -11,6 +11,12 @@ fi
|
||||
|
||||
for recipe in $recipes
|
||||
do
|
||||
if [ ! -d "recipes/$recipe/source" ]
|
||||
then
|
||||
echo -e "\033[01;38;5;215mrepo - fetching $recipe\033[0m" >&2
|
||||
./cook.sh "$recipe" fetch
|
||||
fi
|
||||
|
||||
if [ ! -f "recipes/$recipe/stage.tar" ]
|
||||
then
|
||||
echo -e "\033[01;38;5;215mrepo - building $recipe\033[0m" >&2
|
||||
|
||||
Loading…
Reference in New Issue
Block a user