summaryrefslogblamecommitdiff
path: root/init.sh
blob: 5442b65b4041489d619cc9654068831f2698b279 (plain) (tree)
1
2
3
4
5
6
7
8
                   
 
             
                 
                 
 
        
                       



                          
                                    
                          
                                      
  
 


                                      
                                     
 
                                                         
                                        
                                      

                                        

                                                             
                                                                            
                           
                                             
                                            
                                     
                                      
                                        

                                                             
                                  
                                            
                                     

                                        
                                    
                                  
                                    

                                         
                                        

                                                             
                                  
                                            
                                    
                                  



                                                             
                                   
                           
                                             
                                       
                                           
                                    
                                  
  
 
                                


                                           
  
#!/usr/bin/env bash

export LANG=C
export GROUP=TMW2
export ALTER=evol

CMD="$1"
PROTO="git@gitlab.com:"
if [[ -z "${CMD}" ]]; then
    export CMD="default"
fi

STR=$(git remote -v|grep "https://")
if [[ -n "${STR}" ]]; then
    export PROTO="https://gitlab.com/"
fi

CLONECMD="git clone --origin upstream"
CLONE1="${CLONECMD} ${PROTO}${GROUP}"
CLONE2="${CLONECMD} ${PROTO}"
CLONEA="${CLONECMD} ${PROTO}${ALTER}"

if [[ "${CMD}" == "all" || "${CMD}" == "default" ]]; then
    ${CLONE1}/clientdata.git client-data
    ${CLONEA}/hercules.git server-code
    ${CLONE1}/serverdata.git server-data
    ${CLONE1}/evol-tools.git tools
    ${CLONE1}/evol-hercules.git server-code/src/evol
    cd server-code/src/evol ; git checkout tmw2 ; cd ../../..
    ${CLONEA}/evol-local.git server-local # Do this even serves any purpose?
    ${CLONE1}/Docs.git docs
    ${CLONE1}/TheManaWorld_Wiki.wiki.git wiki
    ln -s server-code/src/evol server-plugin
elif [[ "${CMD}" == "server" ]]; then
    ${CLONEA}/hercules.git server-code
    ${CLONE1}/serverdata.git server-data
    ${CLONE1}/evol-hercules.git server-code/src/evol
    cd server-code/src/evol ; git checkout tmw2 ; cd ../../..
    ${CLONE1}/evol-tools.git tools
    ln -s server-code/src/evol server-plugin
elif [[ "${CMD}" == "client" ]]; then
    ${CLONE1}/clientdata.git client-data
    ${CLONE1}/evol-tools.git tools
elif [[ "${CMD}" == "music" ]]; then
    ${CLONE1}/evol-music.git music
elif [[ "${CMD}" == "local" ]]; then
    ${CLONEA}/evol-local.git server-local
    ${CLONEA}/hercules.git server-code
    ${CLONE1}/serverdata.git server-data
    ${CLONE1}/evol-hercules.git server-code/src/evol
    cd server-code/src/evol ; git checkout tmw2 ; cd ../../..
    ${CLONE1}/evol-tools.git tools
    ln -s server-code/src/evol server-plugin
elif [[ "${CMD}" == "tools" ]]; then
    ${CLONE1}/evol-tools.git tools
elif [[ "${CMD}" == "plugin" ]]; then
    ${CLONE1}/evol-hercules.git server-code/src/evol
    cd server-code/src/evol ; git checkout tmw2 ; cd ../../..
    ln -s server-code/src/evol server-plugin
elif [[ "${CMD}" == "docs" ]]; then
    ${CLONE1}/Docs.git docs
    ${CLONE1}/TheManaWorld_Wiki.wiki.git wiki
elif [[ "${CMD}" == "manaplus" ]]; then
    ${CLONE2}manaplus/manaplus.git manaplus
elif [[ "${CMD}" == "media" ]]; then
    ${CLONE1}/evol-media.git media
fi

if [[ "${CMD}" == "all" ]]; then
    ${CLONE1}/evol-music.git music
    ${CLONE2}manaplus/manaplus.git manaplus
    ${CLONE1}/evol-media.git media
fi