diff --git a/.kokoro/presubmit/downstream-build.sh b/.kokoro/presubmit/downstream-build.sh index 4b496d635f..e9211acb44 100755 --- a/.kokoro/presubmit/downstream-build.sh +++ b/.kokoro/presubmit/downstream-build.sh @@ -18,7 +18,7 @@ set -eo pipefail ## Get the directory of the build script scriptDir=$(realpath "$(dirname "${BASH_SOURCE[0]}")") ## cd to the parent directory, i.e. the root of the git repo -cd "${scriptDir}/.." +cd "${scriptDir}/../.." if [ -z "${MODULES_UNDER_TEST}" ]; then echo "MODULES_UNDER_TEST must be set to run downstream-build.sh" @@ -27,7 +27,7 @@ fi # Use GCP Maven Mirror mkdir -p "${HOME}/.m2" -cp .kokoro/settings.xml "${HOME}/.m2" +cp settings.xml "${HOME}/.m2" ### Round 1 # Publish this repo's modules to local maven to make them available for downstream libraries diff --git a/.kokoro/settings.xml b/settings.xml similarity index 100% rename from .kokoro/settings.xml rename to settings.xml