projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1b9df0
)
CRM-21729 exclude vendor .idea, test-cases, unit-test from deployment
author
eileen
<emcnaughton@wikimedia.org>
Wed, 31 Jan 2018 00:21:25 +0000
(13:21 +1300)
committer
eileen
<emcnaughton@wikimedia.org>
Wed, 31 Jan 2018 00:21:25 +0000
(13:21 +1300)
distmaker/dists/common.sh
patch
|
blob
|
blame
|
history
diff --git
a/distmaker/dists/common.sh
b/distmaker/dists/common.sh
index f3a8cca6e11da230d48f8292ada202e97d930e3b..24c7e71049e776a68843ddcbc12c28af326990a6 100644
(file)
--- a/
distmaker/dists/common.sh
+++ b/
distmaker/dists/common.sh
@@
-162,7
+162,8
@@
function dm_install_vendor() {
local to="$2"
local excludes_rsync=""
- for exclude in .git .svn {T,t}est{,s} {D,d}oc{,s} {E,e}xample{,s} ; do
+ ## CRM-21729 - .idea test-cases unit-test come from phpquery package.
+ for exclude in .git .svn {T,t}est{,s} {D,d}oc{,s} {E,e}xample{,s} .idea test-cases unit-test; do
excludes_rsync="--exclude=${exclude} ${excludes_rsync}"
done