fix(scim): improve get_user for scim

This commit is contained in:
Ruben Fiszel
2024-01-24 20:23:42 +01:00
parent ceaefd90a1
commit 40f3bdcf48
2 changed files with 2 additions and 2 deletions

View File

@@ -133,7 +133,7 @@ pub async fn pip_compile(
args.extend(["--extra-index-url", url, "--no-emit-index-url"]);
}
if let Some(url) = PIP_INDEX_URL.as_ref() {
args.extend(["--index-url", url]);
args.extend(["--index-url", url, "--no-emit-index-url"]);
}
if let Some(host) = PIP_TRUSTED_HOST.as_ref() {
args.extend(["--trusted-host", host]);