File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,8 @@ version=$(python3 compute-version.py "${PROJECT_NAME}"-)
3030commit=$( git rev-parse --short HEAD)
3131archive_name=" archive-${commit} .tar.gz"
3232output_archive_base_name=" ${1:- ${PROJECT_NAME} } "
33- output_archive_name=" ${output_archive_base_name} -${version} "
34- output_archive_dir=" ${OUTPUT_DIR} /${output_archive_name} "
35- output_archive_file_name=" ${output_archive_name} .tar.gz"
33+ output_archive_dir=" ${OUTPUT_DIR} /${output_archive_base_name} "
34+ output_archive_name=" ${output_archive_base_name} -${version} .tar.gz"
3635
3736mkdir -p " ${SUBMODULES_DIR} "
3837mkdir -p " ${output_archive_dir} "
@@ -70,8 +69,8 @@ for submodule_line in $(git submodule status --recursive); do
7069done
7170
7271# Bundle all sources together
73- tar cf " ${output_archive_file_name } " -C " ${OUTPUT_DIR} " --auto-compress .
72+ tar cf " ${output_archive_name } " -C " ${OUTPUT_DIR} " .
7473
75- echo " Wrote ${output_archive_file_name } "
74+ echo " Wrote ${output_archive_name } "
7675
7776cleanup
You can’t perform that action at this time.
0 commit comments