diff --git a/data/handbook-en.html b/data/handbook-en.html index b7d0bd7..54d7da7 100644 --- a/data/handbook-en.html +++ b/data/handbook-en.html @@ -17,7 +17,7 @@ pre {font-size:133% } -

Handbook

+

Installation Guide

Thank you for using Calculate Linux!

diff --git a/data/handbook-ru.html b/data/handbook-ru.html index 3cdaf9d..e19def4 100644 --- a/data/handbook-ru.html +++ b/data/handbook-ru.html @@ -17,7 +17,7 @@ pre {font-size:133% } -

Руководство

+

Руководство по установке

Благодарим за использование Calculate Linux!

diff --git a/pym/cl_install_cmd.py b/pym/cl_install_cmd.py index a91a076..a35dbb6 100644 --- a/pym/cl_install_cmd.py +++ b/pym/cl_install_cmd.py @@ -66,8 +66,7 @@ CMD_OPTIONS = [{'shortOption':"d", 'choices':['cld','cds','cls','css','cldg','cldx'], 'help':_("select operation system") }, - {'shortOption':"m", - 'longOption':"march", + {'longOption':"march", 'optVal':"ARCH", 'type':'choice', 'choices':['i686','x86_64'], @@ -268,8 +267,9 @@ class install_cmd(share_cmd): """Check and set disk, swap and bind cmd options""" if self.optobj.values.s: self.logicObj.setLinuxName(self.optobj.values.s.upper()) - if self.optobj.values.m: - self.logicObj.clVars.Set('os_install_arch_machine',self.optobj.values.m) + if self.optobj.values.march: + self.logicObj.clVars.Set('os_install_arch_machine', + self.optobj.values.march) if self.optobj.values.build: self.logicObj.clVars.Set('os_install_scratch',"on",True) else: