diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-11-17 01:12:06 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-11-17 01:12:06 +0100 |
commit | 65624f54a6a5766fb0d0d96342b1c54bb6d1cbaa (patch) | |
tree | b25ce0a8c9248d261f4a41c9f1e43155f34fa5aa | |
parent | 05b28ad7b3f0bb4f3f1b4e448a0465d17790944b (diff) | |
download | bin-65624f54a6a5766fb0d0d96342b1c54bb6d1cbaa.zip bin-65624f54a6a5766fb0d0d96342b1c54bb6d1cbaa.tar.gz |
easy_e17.sh: reorder header info
-rwxr-xr-x | easy_e17.sh | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/easy_e17.sh b/easy_e17.sh index 2a8b4c3..0b32173 100755 --- a/easy_e17.sh +++ b/easy_e17.sh @@ -123,31 +123,32 @@ function open_header () function header () { echo -e "\033[1m-----------------------------\033[7m Current Configuration \033[0m\033[1m----------------------------\033[0m" + if [ "$linux_distri" ]; then + echo " OS : $os (Distribution: $linux_distri)" + else + echo " OS : $os" + fi echo " Config files : $conf_files" - echo " Install path : $install_path" - echo " Source path : $src_path" + echo " Logs path : $logs_path" + echo + echo " efl e +" if [ $git -eq 1 ]; then echo " Source url : $git_url" else echo " Source url : $src_url (Revision: $src_rev)" fi + echo " Source path : $src_path" + echo " Install path : $install_path" echo " Source mode : $src_mode" - echo " Logs path : $logs_path" - if [ "$linux_distri" ]; then - echo " OS : $os (Distribution: $linux_distri)" - else - echo " OS : $os" - fi + if [ "$only" ]; then echo " Only: $only"; fi + if [ "$skip" ]; then echo " Skipping: $skip"; fi + echo " Packages: $effective_packages" echo echo " ewebkit" echo " Source url : $ewk_src_url (Revision: $ewk_src_rev)" echo " Source path : $ewk_src_path" echo " Install path : $ewk_install_path" echo - if [ "$only" ]; then echo " Only: $only"; fi - if [ "$skip" ]; then echo " Skipping: $skip"; fi - echo " Packages: $effective_packages" - echo if [ -z "$action" ]; then action="MISSING!"; fi echo " Script action: $action" } |