Skip to content

Conversation

@PastelStorm
Copy link
Contributor

From the CVE scan report:

#!/usr/bin/env bash

# python version must match lowest supported (3.9)
major=3
minor=9
if ! python -c "import sys; assert sys.version_info.major == $major and sys.version_info.minor == $minor"; then
  echo "python version not equal to expected $major.$minor: $(python --version)"
  exit 1
fi

# Determine the directory of the script
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

# Use relative paths based on the script's directory
pushd "$SCRIPT_DIR/../requirements" || exit
make clean
make all
popd || exit

Copy link
Contributor

@amanda103 amanda103 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍🏻

@PastelStorm PastelStorm merged commit 1aec48f into main Apr 30, 2025
6 checks passed
@PastelStorm PastelStorm deleted the evoss/fix-cve branch April 30, 2025 17:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants