Skip to content

Commit 798d42f

Browse files
committed
Fix startScripts
1 parent bc8474f commit 798d42f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,9 @@ jobs:
111111
- name: Inspect image
112112
run: |
113113
docker image inspect ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }}
114-
docker run --rm ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }} curl --help
114+
docker run --rm ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }} --help
115115
116116
# If the image was pushed, we need to pull it again to inspect it
117117
- name: Push image
118118
if: ${{ github.event_name != 'pull_request' }}
119119
run: docker push ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }}
120-

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ version = "1.2.0"
2020

2121
description = "RADAR-base output restructuring"
2222
val website = "https://radar-base.org"
23-
val githubRepoName = "RADAR-base/Restructure-HDFS-topic"
23+
val githubRepoName = "RADAR-base/radar-output-restructure"
2424
val githubUrl = "https://github.com/${githubRepoName}"
2525
val issueUrl = "${githubUrl}/issues"
2626

@@ -119,7 +119,7 @@ distributions {
119119
}
120120

121121
tasks.startScripts {
122-
classpath = files("lib/PlaceHolderForPluginPath")
122+
classpath = classpath?.let { it + files("lib/PlaceHolderForPluginPath") }
123123

124124
doLast {
125125
val windowsScriptFile = file(getWindowsScript())

0 commit comments

Comments
 (0)