Skip to content

Commit

Permalink
fix asan deploy script (#109)
Browse files Browse the repository at this point in the history
<!--
Thank you for your contribution to the Kurento project.
Please provide enough information so that others can review your Pull
Request.

For more information, see the Contribution Guidelines:
https://github.com/Kurento/kurento/blob/main/.github/CONTRIBUTING.md
-->


## What is the current behavior you want to change?
<!--
Why is this change required? What problem does it solve?
If it fixes an open issue, please link to the issue here.
-->


## What is the new behavior provided by this change?
<!--
Example: "Adding a function to do X",
then explain why it is necessary to have a way to do X.
-->


## How has this been tested?
<!--
Please describe in detail how you tested your changes.
Include details of your testing environment, tests ran to see how
your change affects other areas of the code, etc.
-->


## Types of changes
<!--
What types of changes does your code introduce?
Put an 'x' in all the boxes that apply:
-->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature / enhancement (non-breaking change which improves the
project)
- [ ] Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] My change requires a change to the documentation
- [ ] My change requires a change in other repository <!-- Explain which
one -->


## Checklist
<!--
Go over all the following points, and put an 'x' in all the boxes that
apply.
If you're unsure about any of these, don't hesitate to ask. We're here
to help!
-->
- [ ] I have read the [Contribution
Guidelines](https://github.com/Kurento/kurento/blob/main/.github/CONTRIBUTING.md)
- [ ] I have added an explanation of what the changes do and why they
should be included
- [ ] I have written new tests for the changes, as applicable, and have
successfully run them locally
  • Loading branch information
slabajo authored Feb 17, 2025
2 parents 78a8ef2 + 83cbc99 commit 6c357cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci-scripts/ci_job_deploy_docker_asan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ fi

# Get version number from the package file itself
# shellcheck disable=SC2012
KMS_DEB_FILE="$(ls -v -1 "$PACKAGES_PATH"/kurento-media-server_*.deb | tail -n 1)"
KMS_DEB_FILE="$(ls -v -1 $(find "$PACKAGES_PATH" -name kurento-media-server_*.deb) | tail -n 1)"
if [[ -z "$KMS_DEB_FILE" ]]; then
log "ERROR: Cannot find KMS package file: $PACKAGES_PATH/kurento-media-server_*.deb"
log "ERROR: Cannot find KMS package file: $PACKAGES_PATH/*/kurento-media-server_*.deb"
exit 1
fi
KMS_VERSION="$(
Expand Down

0 comments on commit 6c357cb

Please sign in to comment.