Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
medjedovicm committed Nov 5, 2020
1 parent f588b1a commit c5a8ed5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sasjs-build/index.js
Expand Up @@ -159,7 +159,7 @@ async function compile(targetName) {
})

await asyncForEach(jobNamesToCompileUniq, async (buildFolder) => {
const folderPath = path.join(buildDestinationServ, buildFolder)
const folderPath = path.join(buildDestinationJobs, buildFolder)
const subFolders = await getSubFoldersInFolder(folderPath)
const filesNamesInPath = await getFilesInFolder(folderPath)
await asyncForEach(filesNamesInPath, async (fileName) => {
Expand Down Expand Up @@ -458,7 +458,7 @@ async function copyFilesToBuildFolder() {
await asyncForEach(jobsToCompile, async (buildFolder) => {
const sourcePath = path.join(buildSourceFolder, buildFolder)
const buildFolderName = buildFolder.split('/').pop()
const destinationPath = path.join(buildDestinationServ, buildFolderName)
const destinationPath = path.join(buildDestinationJobs, buildFolderName)
await copy(sourcePath, destinationPath)
})
}
Expand Down

0 comments on commit c5a8ed5

Please sign in to comment.