Fix for word renamings
parent
52d52fa314
commit
bec4691d6b
|
@ -101,7 +101,7 @@ USING: tools.test io.files io threads kernel continuations ;
|
||||||
|
|
||||||
[ ] [
|
[ ] [
|
||||||
"copy-tree-test" temp-file
|
"copy-tree-test" temp-file
|
||||||
"copy-destination" temp-file copy-tree-to
|
"copy-destination" temp-file copy-tree-into
|
||||||
] unit-test
|
] unit-test
|
||||||
|
|
||||||
[ "Foobar" ] [
|
[ "Foobar" ] [
|
||||||
|
@ -109,7 +109,7 @@ USING: tools.test io.files io threads kernel continuations ;
|
||||||
] unit-test
|
] unit-test
|
||||||
|
|
||||||
[ ] [
|
[ ] [
|
||||||
"copy-destination/copy-tree-test/a/b/c/d" temp-file "" temp-file copy-file-to
|
"copy-destination/copy-tree-test/a/b/c/d" temp-file "" temp-file copy-file-into
|
||||||
] unit-test
|
] unit-test
|
||||||
|
|
||||||
[ "Foobar" ] [
|
[ "Foobar" ] [
|
||||||
|
|
|
@ -10,12 +10,12 @@ IN: tools.deploy.windows
|
||||||
vm over copy-file ;
|
vm over copy-file ;
|
||||||
|
|
||||||
: copy-fonts ( bundle-name -- )
|
: copy-fonts ( bundle-name -- )
|
||||||
"fonts/" resource-path swap copy-tree-to ;
|
"fonts/" resource-path swap copy-tree-into ;
|
||||||
|
|
||||||
: copy-dlls ( bundle-name -- )
|
: copy-dlls ( bundle-name -- )
|
||||||
{ "freetype6.dll" "zlib1.dll" "factor.dll" }
|
{ "freetype6.dll" "zlib1.dll" "factor.dll" }
|
||||||
[ resource-path ] map
|
[ resource-path ] map
|
||||||
swap copy-files-to ;
|
swap copy-files-into ;
|
||||||
|
|
||||||
: create-exe-dir ( vocab bundle-name -- vm )
|
: create-exe-dir ( vocab bundle-name -- vm )
|
||||||
dup copy-dlls
|
dup copy-dlls
|
||||||
|
|
Loading…
Reference in New Issue