Skip to content

Commit

Permalink
fix gitlab owner detection for nested org hierarchy
Browse files Browse the repository at this point in the history
  • Loading branch information
cwharris committed Nov 15, 2024
1 parent f3b4eba commit d5603eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion features/src/utils/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "devcontainer-utils",
"id": "utils",
"version": "24.12.2",
"version": "24.12.3",
"description": "A feature to install RAPIDS devcontainer utility scripts",
"containerEnv": {
"BASH_ENV": "/etc/bash.bash_env"
Expand Down
4 changes: 2 additions & 2 deletions features/src/utils/opt/devcontainer/bin/gitlab/repo/clone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ get_repo_owner() {
query {
project(fullPath: "${repo}") {
namespace {
path
fullPath
}
}
}
________EOF
)" \
| jq -r '.data.project.namespace.path';
| jq -r '.data.project.namespace.fullPath';
}

get_repo_git_url() {
Expand Down

0 comments on commit d5603eb

Please sign in to comment.