Changeset 220 for nutchez-0.2/src
- Timestamp:
- Jun 24, 2010, 5:49:58 PM (14 years ago)
- Location:
- nutchez-0.2/src
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
nutchez-0.2/src/shell/client_install
r214 r220 27 27 fi 28 28 # Source functions 29 source $Work_Path/client_install_func.sh 29 #if [ ! -f $Work_Path/client_install_func.sh ];then 30 # scp 31 #fi 32 source $Work_Path/client_install_func.sh; 33 30 34 31 35 # Language Choice -
nutchez-0.2/src/shell/install
r219 r220 3 3 4 4 # 變數宣告 5 5 6 Work_Path="./" 6 7 Work_Path_J=0 … … 13 14 14 15 # Source functions 15 source $Work_Path/install_func.sh 16 source $Work_Path/lang_link 16 if [ -f $Work_Path/install_func.sh ];then 17 source $Work_Path/install_func.sh; 18 elif [ -f $Work_Path/bin/install_func.sh ];then 19 source $Work_Path/bin/install_func.sh; 20 else 21 echo "Import install-function-library error !!! "; 22 exit 1; 23 fi 24 25 if [ -f $Work_Path/lang_linl ];then 26 source $Work_Path/lang_link; 27 elif [ -f $Work_Path/bin/lang_link ];then 28 source $Work_Path/bin/lang_link; 29 else 30 echo "Import Language-File error !!! "; 31 fi 17 32 ### real code ##### 18 33
Note: See TracChangeset
for help on using the changeset viewer.