Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2017-08-24 23:16:08 +0300
committernachoparker <nacho@ownyourbits.com>2017-08-24 23:16:08 +0300
commit06a07cbb0c4ad5cbb200f08fad7251a9b0a03ac8 (patch)
tree4f872be271fa252e28d707c15c405516226f4c78
parentf044c6d6b22885393b2f46477c88317fdf688994 (diff)
remove special characters from output, for ncp-webv0.24.3
-rwxr-xr-xbin/ncp-update2
-rw-r--r--build-devel.sh2
-rwxr-xr-xetc/library.sh6
3 files changed, 5 insertions, 5 deletions
diff --git a/bin/ncp-update b/bin/ncp-update
index 25662956..32bcd2d8 100755
--- a/bin/ncp-update
+++ b/bin/ncp-update
@@ -22,6 +22,6 @@
cd /
rm -rf /tmp/ncp-update-tmp
- echo -e "NextCloudPi updated to version \e[1m$VER\e[0m"
+ echo -e "NextCloudPi updated to version $VER"
exit
} # force to read the whole thing into memory, as its contents might change in update.sh
diff --git a/build-devel.sh b/build-devel.sh
index f671ccd3..fbcf9aa8 100644
--- a/build-devel.sh
+++ b/build-devel.sh
@@ -34,7 +34,7 @@ install()
cd /
rm -rf /tmp/ncp-update-tmp
- echo -e "NextCloudPi updated to version \e[1m$VER\e[0m"
+ echo -e "NextCloudPi updated to version $VER"
}
cleanup() { :; }
diff --git a/etc/library.sh b/etc/library.sh
index 2e25b1ef..b89bc76d 100755
--- a/etc/library.sh
+++ b/etc/library.sh
@@ -197,7 +197,7 @@ function install_script()
(
local SCRIPT=$1
source ./$SCRIPT
- echo -e "Installing \e[1m$( basename $SCRIPT .sh )\e[0m"
+ echo -e "Installing $( basename $SCRIPT .sh )"
set +x
install
)
@@ -206,7 +206,7 @@ function install_script()
function activate_script()
{
local SCRIPT=$1
- echo -e "Activating \e[1m$( basename $SCRIPT .sh )\e[0m"
+ echo -e "Activating $( basename $SCRIPT .sh )"
launch_script $SCRIPT
}
@@ -241,7 +241,7 @@ function configure_script()
echo -e "$INSTALLATION_CODE" > $SCRIPT # save configuration
source ./$SCRIPT # load configuration
printf '\033[2J' && tput cup 0 0 # clear screen, don't clear scroll, cursor on top
- echo -e "Launching \e[1m$( basename $SCRIPT .sh )\e[0m"
+ echo -e "Launching $( basename $SCRIPT .sh )"
set +x
configure
return 0