Skip to content
Snippets Groups Projects
Commit e56fde7c authored by Philip Makedonski's avatar Philip Makedonski
Browse files

+ fixes for prepare and CI scripts

parent 11768bb5
No related branches found
No related tags found
1 merge request!3* merge dev with latest fixes
Pipeline #4060 passed
......@@ -36,7 +36,7 @@ variables:
SITE_LOCATION: "updatesite/org.etsi.mts.tdl.extras.updatesite/target"
ARCHIVE_NAME: "org.etsi.mts.tdl.extras.updatesite-1.0.0-SNAPSHOT.zip"
SITE_ARCHIVE: "${SITE_LOCATION}/${ARCHIVE_NAME}"
SITE_PATH: "${SITE_LOCATION}/repository/"
SITE_PATH: "${SITE_LOCATION}/repository"
REPO_PREFIX: "https://labs.etsi.org/rep/top/top-extras/-/jobs"
REPO_PATH: "artifacts/raw/updatesite/org.etsi.mts.tdl.extras.updatesite/target/repository/"
PACKAGE_NAME: "TOP Extras Interim Build"
......
......@@ -12,8 +12,9 @@ update_contents() {
CLEAN=$(echo "$TARGET_PATH/" | sed 's/\//\\\//g')
echo $CLEAN
# Use the escaped variable in a sed command
echo "find . -type f | sed -e \"s|$CLEAN||g\" > \"$TARGET_PATH/content.txt\""
echo "find $TARGET_PATH -type f | sed -e \"s|$CLEAN||g\" > \"$TARGET_PATH/content.txt\""
find $TARGET_PATH -type f | sed -e "s|$CLEAN||g" > "$TARGET_PATH/content.txt"
cat "$TARGET_PATH/content.txt"
}
process_contents() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment