Skip to content

Commit

Permalink
fix(releasing): fixes npm script for release validation (#27214)
Browse files Browse the repository at this point in the history
  • Loading branch information
rusackas committed Feb 22, 2024
1 parent 5403797 commit 2a47edc
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions RELEASING/validate_this_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,13 @@ PYTHON=$(get_python_command)
PIP=$(get_pip_command)

# Get the release directory's path. If you unzip an Apache release and just run the npm script to validate the release, this will be a file name like `apache-superset-x.x.xrcx-source.tar.gz`
RELEASE_DIR_NAME="../../$(basename "$(dirname "$(pwd)")").tar.gz"
RELEASE_ZIP_PATH="../../$(basename "$(dirname "$(pwd)")")-source.tar.gz"

# Install dependencies from requirements.txt if the file exists
if [ -f "path/to/requirements.txt" ]; then
echo "Installing Python dependencies..."
$PYTHON -m $PIP install -r path/to/requirements.txt
fi

# echo $PYTHON
# echo $RELEASE_DIR_NAME

# Run the Python script with the parent directory name as an argument
$PYTHON ../RELEASING/verify_release.py "$RELEASE_DIR_NAME"
$PYTHON ../RELEASING/verify_release.py "$RELEASE_ZIP_PATH"

0 comments on commit 2a47edc

Please sign in to comment.