Remove tput calls. It does not work for unknown sandbox/amistewicz/comwor4
authorAleksander Mistewicz <a.mistewicz@samsung.com>
Fri, 10 Nov 2017 17:01:14 +0000 (18:01 +0100)
committerAleksander Mistewicz <a.mistewicz@samsung.com>
Fri, 10 Nov 2017 17:01:14 +0000 (18:01 +0100)
Change-Id: I489345f8fcb8f7aff2ed03cc2460862751940b8d

scripts/tizen/sd_fusing_rpi3.sh

index a79972a..547bddc 100755 (executable)
@@ -43,11 +43,8 @@ function print_message () {
        local color=$1
        local message=$2
 
-       tput setaf $color
-       tput bold
        echo ""
        echo $message
-       tput sgr 0
 }
 
 function fusing_image () {
@@ -258,9 +255,8 @@ function check_partition_format () {
 
 function check_args () {
        if [ "$DEVICE" == "" ]; then
-               echo "$(tput setaf 1)$(tput bold)- Device node is empty!"
+               echo "Device node is empty!"
                show_usage
-               tput sgr 0
                exit 0
        fi
 
@@ -279,8 +275,7 @@ function check_args () {
 
        if [ "$FORMAT" == "1" ]; then
                echo ""
-               echo "$(tput setaf 3)$(tput bold)$DEVICE will be formatted, Is it OK? [y/n]"
-               tput sgr 0
+               echo "$DEVICE will be formatted, Is it OK? [y/n]"
                read input
                if [ "$input" == "y" ] || [ "$input" == "Y" ]; then
                        FORMAT=2