We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c121a0 commit 8271a6eCopy full SHA for 8271a6e
.github/scripts/.package.zsh
@@ -258,8 +258,10 @@ ${_usage_host:-}"
258
pushd ${project_root}
259
cmake --build build_${target##*-} --config ${config} -t package ${cmake_args}
260
261
- mv ${project_root}/release/*.deb ${project_root}/release/${output_name}.deb
262
- mv ${project_root}/release/*.ddeb ${project_root}/release/${output_name}.ddeb
+ if [ ! -e ${project_root}/release/${output_name}.deb ]; then
+ mv ${project_root}/release/*.deb ${project_root}/release/${output_name}.deb
263
+ mv ${project_root}/release/*.ddeb ${project_root}/release/${output_name}.ddeb
264
+ fi
265
popd
266
}
267
.github/test
0 commit comments