summaryrefslogtreecommitdiffstats
path: root/easy_e17.sh
diff options
context:
space:
mode:
Diffstat (limited to 'easy_e17.sh')
-rwxr-xr-xeasy_e17.sh25
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"
}