Skip to content

Commit

Permalink
Rename vs-code-extension folder in build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
Lars Egeberg Hansen committed Sep 21, 2023
1 parent 22131ae commit 5dcda56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -148,15 +148,15 @@ task copyJarToBin(type: Copy) {
}

task clearExtensionJar(type: Delete) {
delete fileTree(dir:'vs code extension/Cobol-check/bin', include: '**.jar')
delete fileTree(dir:'vs-code-extension/Cobol-check/bin', include: '**.jar')
}

task copyJarToExtension(type: Copy) {
description 'Copy executable jar to bin and VS Code extension bin directories prior to distribution'
dependsOn clearExtensionJar, fatJar
from('build/libs/')
include '**/*.jar'
into 'vs code extension/Cobol-check/bin/'
into 'vs-code-extension/Cobol-check/bin/'
}


Expand Down

0 comments on commit 5dcda56

Please sign in to comment.