Skip to content

Commit fe4de3b

Browse files
committed
Fix GitHub installation command in run.sh to use the correct repository URL
1 parent bd651e2 commit fe4de3b

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 "leap-data-management-utils[catalog] @ git+https://github.com/leap-data/leap-data-management-utils@$1" || {
12+
python -m pip install "leap-data-management-utils[catalog] @ git+https://github.com/leap-stc/leap-data-management-utils@$1" || {
1313
echo "Installation from GitHub failed"
1414
exit 1
1515
}

0 commit comments

Comments
 (0)