Use shared library

main
Nicolas Arenas 2025-03-17 19:29:50 +01:00
parent f216cdb880
commit 925f03d91e
1 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,8 @@
def call(String repoDir) {
script {
sh """
#!/bin/bash
sh """#!/bin/bash
set -e
set -x
INPUT_FILE="${repoDir}/changelog.md"
OUTPUT_FILE="${repoDir}/debian/changelog"
@ -40,3 +41,4 @@ def call(String repoDir) {
"""
}
}