14 lines
353 B
Bash
Executable File
14 lines
353 B
Bash
Executable File
#!/bin/bash
|
|
# *****************************************************************************
|
|
# @author CsHeng
|
|
# @2017.7.18 初始版本
|
|
#
|
|
# 初始化git submodule
|
|
#
|
|
# *****************************************************************************
|
|
|
|
# get current shell absolute dir
|
|
CWD=$(cd "$(dirname "$0")"; pwd)
|
|
|
|
git submodule init
|
|
git submodule update |