Coder Social home page Coder Social logo

Comments (3)

mrrfv avatar mrrfv commented on August 18, 2024

Could you please try going to the functions directory in the project files, editing the cecho function in helper.sh so it calls tput sgr0 instead of tput init and running the script again? This patch could fix the problem. Let me know if it helped so I can update the code in the repo.

# "cecho" makes output messages yellow, if possible
function cecho() {
if tty -s; then
echo "$(tput setaf 11)$1$(tput init)"
else
echo "$1"
fi
}

from open-android-backup.

lemzwerg avatar lemzwerg commented on August 18, 2024

I applied

diff --git a/functions/helper.sh b/functions/helper.sh
index c39436b..07a0d7c 100644
--- a/functions/helper.sh
+++ b/functions/helper.sh
@@ -13,7 +13,7 @@ function wait_for_enter() {
 # "cecho" makes output messages yellow, if possible
 function cecho() {
   if tty -s; then
-    echo "$(tput setaf 11)$1$(tput init)"
+    echo "$(tput setaf 11)$1$(tput sgr0)"
   else
     echo "$1"
   fi

and it doesn't help.

from open-android-backup.

lemzwerg avatar lemzwerg commented on August 18, 2024

I have to correct myself – I was fooled by #67. It works, thanks 🙂

from open-android-backup.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.