Skip to content
Snippets Groups Projects
Commit 5cf7fe63 authored by kingsley_nweye's avatar kingsley_nweye
Browse files

fixed url to precede username with : & not /

parent 69aca916
No related branches found
No related tags found
No related merge requests found
......@@ -100,8 +100,8 @@ check_cli_install() {
log_error 'You might be on older AIcrowd CLI version. Please upgrade using `pip install -U aicrowd-cli` and login again.';exit 1
fi
export OAUTH=$(python -c 'from aicrowd.contexts.config import CLIConfig;c=CLIConfig();c.load(None);print(c.get("gitlab")["oauth_token"])')
git remote add aicrowd git@gitlab.aicrowd.com/$USERNAME/citylearn-2023-starter-kit.git
git config lfs.git@gitlab.aicrowd.com/$USERNAME/citylearn-2023-starter-kit/info/lfs.locksverify true
git remote add aicrowd git@gitlab.aicrowd.com:$USERNAME/citylearn-2023-starter-kit.git
git config lfs.git@gitlab.aicrowd.com:$USERNAME/citylearn-2023-starter-kit/info/lfs.locksverify true
retval=$?
if [ $retval -ne 0 ]; then
log_normal "Remote already exit, repository location: $(get_submission_remote | awk -F'@' '{print $NF}' | sed 's|\.git||g')";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment