mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
Remove submodules and clone them instead, only latest history and one branch. Closes #977
This commit is contained in:
parent
5ef594a7d3
commit
f0f27d1b95
4 changed files with 8 additions and 10 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -5,4 +5,6 @@
|
||||||
tmp/
|
tmp/
|
||||||
node_modules/
|
node_modules/
|
||||||
.vscode/
|
.vscode/
|
||||||
.build/*
|
.build/*
|
||||||
|
packages/kadira-flow-router/
|
||||||
|
packages/meteor-useraccounts-core/
|
||||||
|
|
|
||||||
7
.gitmodules
vendored
7
.gitmodules
vendored
|
|
@ -1,7 +0,0 @@
|
||||||
[submodule "packages/kadira:flow-router"]
|
|
||||||
path = packages/kadira:flow-router
|
|
||||||
url = https://github.com/wekan/flow-router.git
|
|
||||||
|
|
||||||
[submodule "packages/useraccounts:core"]
|
|
||||||
path = packages/useraccounts:core
|
|
||||||
url = https://github.com/meteor-useraccounts/core.git
|
|
||||||
|
|
@ -77,3 +77,4 @@ rajit:bootstrap3-datepicker
|
||||||
kadira:flow-router
|
kadira:flow-router
|
||||||
shell-server@0.2.3
|
shell-server@0.2.3
|
||||||
simple:rest-accounts-password
|
simple:rest-accounts-password
|
||||||
|
useraccounts:core
|
||||||
|
|
|
||||||
|
|
@ -94,9 +94,11 @@ RUN \
|
||||||
if [ "$USE_EDGE" = false ]; then \
|
if [ "$USE_EDGE" = false ]; then \
|
||||||
gosu wekan:wekan sh ./install_meteor.sh; \
|
gosu wekan:wekan sh ./install_meteor.sh; \
|
||||||
else \
|
else \
|
||||||
gosu wekan:wekan git clone --recursive git://github.com/meteor/meteor.git /home/wekan/.meteor && \
|
gosu wekan:wekan git clone --recursive --depth 1 -b release/METEOR@${METEOR_EDGE} git://github.com/meteor/meteor.git /home/wekan/.meteor && \
|
||||||
|
cd /home/wekan/packages && \
|
||||||
|
gosu wekan:wekan git clone --depth 1 -b master git://github.com/wekan/flow-router.git kadira-flow-router && \
|
||||||
|
gosu wekan:wekan git clone --depth 1 -b master git://github.com/meteor-useraccounts/core.git meteor-useraccounts-core && \
|
||||||
cd /home/wekan/.meteor && \
|
cd /home/wekan/.meteor && \
|
||||||
gosu wekan:wekan git checkout release/METEOR@${METEOR_EDGE} && \
|
|
||||||
gosu wekan /home/wekan/.meteor/meteor -- help; \
|
gosu wekan /home/wekan/.meteor/meteor -- help; \
|
||||||
fi && \
|
fi && \
|
||||||
\
|
\
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue