Skip to content

Commit f32c25b

Browse files
committed
mention-support: Copy all files from src/assets.
1 parent d402181 commit f32c25b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

htmlCopy.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
ext {
22
copyEditorHtmlToAppAssets = { dir ->
3-
def fromF = new File(dir, '/src/assets/editor.html');
3+
def fromF = new File(dir, '/src/assets/');
44
def toF = new File(projectDir, '/src/main/assets/');
5-
println ('Copying ZSSRichTextEditor html asset file from ' + fromF.toString() + ' to ' + toF.toString());
5+
println ('Copying ZSSRichTextEditor assets from ' + fromF.toString() + ' to ' + toF.toString());
66

77
copy {
88
from fromF
99
into toF
10+
include '*/*.*'
1011
}
1112
}
1213
}

0 commit comments

Comments
 (0)