Created
February 22, 2013 15:42
-
-
Save sebastienblanc/5014303 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/this code is inside a module script, I want to copy the resources folder from the module to the web folder of the project | |
vertx.fileSystem.copy("mods/org.aerogear.vertxgo-v0.1/resources", "web",true) { ar -> | |
if (ar.succeeded()) { | |
log.info("Copy was successful") | |
} else { | |
log.error("Failed to copy", ar.exception) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment