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:
7399f09
)
Fix Distmaker building by ensuring we are rsyncing from the right folder
author
Seamus Lee
<seamuslee001@gmail.com>
Wed, 19 May 2021 23:48:46 +0000
(09:48 +1000)
committer
Seamus Lee
<seamuslee001@gmail.com>
Wed, 19 May 2021 23:48:46 +0000
(09:48 +1000)
distmaker/dists/common.sh
patch
|
blob
|
blame
|
history
diff --git
a/distmaker/dists/common.sh
b/distmaker/dists/common.sh
index 5422a38d32a169cc3b64f04826325d048db3ddf3..dcc8e6059d9bf89166ce7c6aa696199690375eab 100644
(file)
--- a/
distmaker/dists/common.sh
+++ b/
distmaker/dists/common.sh
@@
-110,8
+110,8
@@
function dm_install_coreext() {
shift
for relext in "$@" ; do
- [ ! -d "$to/
$relext" ] && mkdir -p "$to
/$relext"
- ${DM_RSYNC:-rsync} -avC $excludes_rsync --include=core "$repo/
$relext/./" "$to
/$relext/./"
+ [ ! -d "$to/
ext/$relext" ] && mkdir -p "$to/ext
/$relext"
+ ${DM_RSYNC:-rsync} -avC $excludes_rsync --include=core "$repo/
ext/$relext/./" "$to/ext
/$relext/./"
done
}