basename correction

This commit is contained in:
Hyatt 2023-03-09 18:35:46 -06:00
parent e11fdb8d6f
commit 65153037fb
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -183,22 +183,22 @@ pipeline {
steps {
container('alpine') {
script {
def appName = sh (
def aName = sh (
script: """
printf '%s\\n' "\$(basename "\$(find ./ -name "*.AppImage")")"
""",
returnStdout: true
).trim()
def appLoc = sh (
def aPath = sh (
script: """
printf '%s\\n' "\$(find ./ -name "*.AppImage")"
printf '%s\\n' "\$(dirname "\$(find ./ -name "*.AppImage")")"
""",
returnStdout: true
).trim()
functions.pushArtifact(
repoCreds: "nexus-generic-upload-bot",
fileName: appName,
filePath: workspace + "/" + appLoc,
fileName: aName,
filePath: workspace + "/" + aPath,
fileURL: "https://nexus.c.test-chamber-13.lan/repository/generic/appimage/"
)
}