mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-25 22:34:18 +08:00
Remove unimplemented status scripts
This commit is contained in:
parent
957cfbd005
commit
efcc131e05
25
status.sh
25
status.sh
@ -1,25 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
|
||||
source config.sh
|
||||
|
||||
if [ $# = 0 ]
|
||||
then
|
||||
recipes="$(target/release/list_recipes)"
|
||||
else
|
||||
recipes="$@"
|
||||
fi
|
||||
|
||||
for recipe in $recipes
|
||||
do
|
||||
recipe_path=`target/release/find_recipe $recipe`
|
||||
if [ -d "$recipe_path/source" ]
|
||||
then
|
||||
status="$(COOK_QUIET=1 ./cook.sh "$recipe" status)"
|
||||
|
||||
if [ -n "$status" ]
|
||||
then
|
||||
echo -e "\e[1m$recipe\e[0m\n$status"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
@ -1,25 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
|
||||
source config.sh
|
||||
|
||||
if [ $# = 0 ]
|
||||
then
|
||||
recipes="$(target/release/list_recipes)"
|
||||
else
|
||||
recipes="$@"
|
||||
fi
|
||||
|
||||
for recipe in $recipes
|
||||
do
|
||||
recipe_path=`target/release/find_recipe $recipe`
|
||||
if [ -d "$recipe_path/source" ]
|
||||
then
|
||||
status="$(COOK_QUIET=1 ./cook.sh "$recipe" status_origin)"
|
||||
|
||||
if [ -n "$status" ]
|
||||
then
|
||||
echo -e "\e[1m$recipe\e[0m\n$status"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
@ -1,25 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
|
||||
source config.sh
|
||||
|
||||
if [ $# = 0 ]
|
||||
then
|
||||
recipes="$(target/release/list_recipes)"
|
||||
else
|
||||
recipes="$@"
|
||||
fi
|
||||
|
||||
for recipe in $recipes
|
||||
do
|
||||
recipe_path=`target/release/find_recipe $recipe`
|
||||
if [ -d "$recipe_path/source" ]
|
||||
then
|
||||
status="$(COOK_QUIET=1 ./cook.sh "$recipe" status_upstream)"
|
||||
|
||||
if [ -n "$status" ]
|
||||
then
|
||||
echo -e "\e[1m$recipe\e[0m\n$status"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
Loading…
Reference in New Issue
Block a user