diff --git a/status.sh b/status.sh deleted file mode 100755 index 19aa856e7..000000000 --- a/status.sh +++ /dev/null @@ -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 diff --git a/status_origin.sh b/status_origin.sh deleted file mode 100755 index b82bcedc7..000000000 --- a/status_origin.sh +++ /dev/null @@ -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 diff --git a/status_upstream.sh b/status_upstream.sh deleted file mode 100755 index eb150c004..000000000 --- a/status_upstream.sh +++ /dev/null @@ -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