Compare commits

..

1 커밋

작성자 SHA1 메시지 날짜
9142671e4e POST-Deploying multiple jekyll sites at once 2018-12-05 23:49:04 -05:00
2개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제

파일 보기

@@ -33,8 +33,8 @@ GIT_REPO="$(pwd)"
TMP_GIT_CLONE="/tmp/${GIT_REPO##*/}" TMP_GIT_CLONE="/tmp/${GIT_REPO##*/}"
# clone the bare repo into temp working dir # clone the bare repo into temp working dir
if [ ! -d "{$TMP_GIT_CLONE}" ]; then if [ ! -d "${TMP_GIT_CLONE}" ]; then
git clone "${GIT_REPO}" "$TMP_GIT_CLONE" git clone "${GIT_REPO}" "${TMP_GIT_CLONE}"
cd "${TMP_GIT_CLONE}" cd "${TMP_GIT_CLONE}"
else else
cd "${TMP_GIT_CLONE}" cd "${TMP_GIT_CLONE}"
@@ -69,7 +69,7 @@ Example:
GIT_REPO="$(pwd)" GIT_REPO="$(pwd)"
TMP_GIT_CLONE="/tmp/${GIT_REPO##*/}" TMP_GIT_CLONE="/tmp/${GIT_REPO##*/}"
if [ ! -d "{$TMP_GIT_CLONE}" ]; then if [ ! -d "${TMP_GIT_CLONE}" ]; then
git clone "${GIT_REPO}" "${TMP_GIT_CLONE}" git clone "${GIT_REPO}" "${TMP_GIT_CLONE}"
cd "${TMP_GIT_CLONE}" cd "${TMP_GIT_CLONE}"
else else

파일 보기

@@ -5,8 +5,8 @@
GIT_REPO="$(pwd)" GIT_REPO="$(pwd)"
TMP_GIT_CLONE="/tmp/${GIT_REPO##*/}" TMP_GIT_CLONE="/tmp/${GIT_REPO##*/}"
if [ ! -d "{$TMP_GIT_CLONE}" ]; then if [ ! -d "${TMP_GIT_CLONE}" ]; then
git clone "${GIT_REPO}" "$TMP_GIT_CLONE" git clone "${GIT_REPO}" "${TMP_GIT_CLONE}"
cd "${TMP_GIT_CLONE}" cd "${TMP_GIT_CLONE}"
else else
cd "${TMP_GIT_CLONE}" cd "${TMP_GIT_CLONE}"