From 5dcda56348c62f9d5a2400f622454b1420fc5384 Mon Sep 17 00:00:00 2001 From: Lars Egeberg Hansen Date: Thu, 21 Sep 2023 13:25:58 +0200 Subject: [PATCH] Rename vs-code-extension folder in build.gradle --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index c9d8fc82..163f3200 100644 --- a/build.gradle +++ b/build.gradle @@ -148,7 +148,7 @@ 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) { @@ -156,7 +156,7 @@ task copyJarToExtension(type: Copy) { dependsOn clearExtensionJar, fatJar from('build/libs/') include '**/*.jar' - into 'vs code extension/Cobol-check/bin/' + into 'vs-code-extension/Cobol-check/bin/' }