From eb517e474e732e26b1ba0d70a1b064e11f741e65 Mon Sep 17 00:00:00 2001 From: Bryce Thorup Date: Thu, 14 May 2026 13:57:14 -0600 Subject: [PATCH] a --- install_pypi_config.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/install_pypi_config.sh b/install_pypi_config.sh index b4a667d..bf541e2 100755 --- a/install_pypi_config.sh +++ b/install_pypi_config.sh @@ -12,10 +12,8 @@ password = {password} # Replace placeholders with environment variables config_output=$(echo "$config_template" | \ - sed -e "s/{repository}/$PYPI_REPO_DOMAIN/g" \ - -e "s/{username}/$PYPI_REPO_USER/g" \ - -e "s/{password}/$PYPI_REPO_PASS/g") - -echo "$config_output" + sed -e "s/{repository}/$INPUT_PYPI_REPO_DOMAIN/g" \ + -e "s/{username}/$INPUT_PYPI_REPO_USER/g" \ + -e "s/{password}/$INPUT_PYPI_REPO_PASS/g") echo "$config_output" > "$HOME/.pypirc" \ No newline at end of file