diff --git a/parse-datasets/modules/cloneGitRepository.js b/parse-datasets/modules/cloneGitRepository.js index 83b005d7..5bd345cf 100644 --- a/parse-datasets/modules/cloneGitRepository.js +++ b/parse-datasets/modules/cloneGitRepository.js @@ -24,7 +24,7 @@ module.exports = async () => { } // Run external tool synchronously - if (shell.exec(`git clone https://github.com/carrismetropolitana/datasets.git settings.BASE_DIR`).code !== 0) { + if (shell.exec(`git clone https://github.com/carrismetropolitana/datasets.git ${settings.BASE_DIR}`).code !== 0) { shell.echo('Error: Git clone failed'); shell.exit(1); }