Skip to content

Commit bd651e2

Browse files
committed
Fix installation command in run.sh to correct package syntax for GitHub installation
1 parent 0e21e6f commit bd651e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

leap-catalog/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ echo "Arguments: version=$1, validation-path=$2, single-feedstock=$3, generation
99
if [[ "$1" == "main" ]] || [[ "$1" =~ ^[0-9a-f]{7,}$ ]] || [[ "$1" =~ ^v[0-9]+\.[0-9]+\.[0-9]+ ]]; then
1010
# Install from GitHub for main branch, git SHA, or a specific tag
1111
echo "🔍 Installing package from GitHub with version: $1"
12-
python -m pip install "git+https://github.com/leap-data/leap-data-management-utils@$1#egg=leap-data-management-utils[catalog]" || {
12+
python -m pip install "leap-data-management-utils[catalog] @ git+https://github.com/leap-data/leap-data-management-utils@$1" || {
1313
echo "Installation from GitHub failed"
1414
exit 1
1515
}

0 commit comments

Comments
 (0)