Skip to content
Snippets Groups Projects
Unverified Commit 11509e79 authored by Yee's avatar Yee Committed by GitHub
Browse files

Fix docker build script (#916)

parent 67523d89
No related branches found
No related tags found
No related merge requests found
......@@ -194,11 +194,9 @@ function package {
exit 1
else
# rename package file
pkg_names=$(ls ./*nebula*-${version}*)
outputDir=$build_dir/cpack_output
mkdir -p ${outputDir}
for pkg_name in "${pkg_names[@]}";
do
for pkg_name in $(ls ./*nebula*-${version}*); do
new_pkg_name=${pkg_name/\-Linux/${sys_ver}}
mv ${pkg_name} ${outputDir}/${new_pkg_name}
echo "####### taget package file is ${outputDir}/${new_pkg_name}"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment