Compare commits

..

2 Commits

Author SHA1 Message Date
f639bd41f5 docker build imagages script fix 2025-01-27 18:15:30 -05:00
a35bcf089e minor 2025-01-27 17:07:28 -05:00
4 changed files with 5 additions and 3 deletions

View File

@ -1 +1 @@
1.9.8,release_version.txt -> VERSION
1.9.9,docker build imagages script fix

View File

@ -150,6 +150,7 @@ whats_new=$(cat ${version_file} | awk -F',' '{print $2}')
echo "--------------------------------"
echo "Version file: ${version_file}"
echo "Release version: ${release_version}"
confirm

View File

@ -232,6 +232,7 @@ get_latest_dist_version() {
echo "${Version}"
}
echo "------------------------------------- Starting ${0} ${*}"
echo RootDir=${RootDir}
cd ${RootDir}
@ -256,7 +257,7 @@ for item in "${Jobs[@]}"; do
project=$(echo "$item" | jq -r '.value.based_on_project')
test_script=$(echo "$item" | jq -r '.value.test_script')
build_docker_image "$title" "$image_name" "$docker_dev_path" "$project" "${test_script}
build_docker_image "$title" "$image_name" "$docker_dev_path" "$project" "${test_script}"
done
Cmd="rm -rf ${RootDir}/docker_dev"

View File

@ -47,7 +47,7 @@ function rsync_load_version() {
if ssh -q -p ${port} ${user}@${host} "test -d ${rel_dir}/${Project}/${Version}"
then
echo "Directory found..."
rsync_cmd="rsync -ahvv -e \"ssh -p ${port}\""
rsync_cmd="rsync -ahv -e \"ssh -p ${port}\""
rsync_cmd="${rsync_cmd} ${user}@${host}:${rel_dir}/${Project}/${Version}"
rsync_cmd="${rsync_cmd} ${LocalSoftwareDir}/${Project}/"
echo ${rsync_cmd}