We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a930df commit 4c4dce5Copy full SHA for 4c4dce5
monorepo-migration/migrate.sh
@@ -32,7 +32,10 @@ check_command mvn
32
33
# Configuration
34
MONOREPO_URL="https://github.com/googleapis/google-cloud-java"
35
-SOURCE_REPO_URL="${SOURCE_REPO_URL:-https://github.com/googleapis/java-logging}"
+if [ -z "$SOURCE_REPO_URL" ]; then
36
+ read -p "Enter SOURCE_REPO_URL [https://github.com/googleapis/java-logging]: " input_url
37
+ SOURCE_REPO_URL="${input_url:-https://github.com/googleapis/java-logging}"
38
+fi
39
CODEOWNER="${CODEOWNER:-}"
40
if [ -z "$CODEOWNER" ]; then
41
read -p "Enter CODEOWNER (e.g., @chingor13): " CODEOWNER
0 commit comments