diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-09-20 00:46:12 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-09-20 00:46:12 +0200 |
commit | 62178006d3a9b899beed8b42321b2ce06e4dd643 (patch) | |
tree | a2c4a4a9541eddce6a2eade4ecc57667e3f3693c | |
parent | 104832ec2775551e8962af238e36486bccbc5851 (diff) | |
download | bin-62178006d3a9b899beed8b42321b2ce06e4dd643.zip bin-62178006d3a9b899beed8b42321b2ce06e4dd643.tar.gz |
easy_e17.sh: just a little cosmetic
-rwxr-xr-x | easy_e17.sh | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/easy_e17.sh b/easy_e17.sh index 635a0b8..6be4d45 100755 --- a/easy_e17.sh +++ b/easy_e17.sh @@ -114,20 +114,20 @@ function open_header () function header () { echo -e "\033[1m-----------------------------\033[7m Current Configuration \033[0m\033[1m----------------------------\033[0m" - echo " Config files: $conf_files" - echo " Install path: $install_path" - echo " Source path: $src_path" + echo " Config files : $conf_files" + echo " Install path : $install_path" + echo " Source path : $src_path" if [ $git -eq 1 ]; then - echo " Source url: $git_url" + echo " Source url : $git_url" else - echo " Source url: $src_url (Revision: $src_rev)" + echo " Source url : $src_url (Revision: $src_rev)" fi - echo " Source mode: $src_mode" - echo " Logs path: $logs_path" + echo " Source mode : $src_mode" + echo " Logs path : $logs_path" if [ "$linux_distri" ]; then - echo " OS: $os (Distribution: $linux_distri)" + echo " OS : $os (Distribution: $linux_distri)" else - echo " OS: $os" + echo " OS : $os" fi echo if [ "$only" ]; then echo " Only: $only"; fi @@ -782,7 +782,7 @@ function parse_git_updates () path=$(find_local_path $kpg) if [ `cat "$tmp_path/source_update.log" | egrep -q "^${path#$src_path}"; echo $?` == 0 ]; then updated_packages="$updated_packages $pkg" - echo "- $pkg" + echo " - $pkg" fi done fi |