Created
August 26, 2018 22:01
-
-
Save joan38/0c46801939b7b9d91cf0c88759edbfd5 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
| dir("subDir") { implicit workDir => | |
| // Creating subDir/myFile | |
| LocalFile("myFile").createNewFile() | |
| dir("subDir2") { implicit workDir => | |
| // Creating subDir/subDir2/myFile | |
| LocalFile("myFile").createNewFile() | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment