Skip to content

Commit f68649c

Browse files
chore(ci): fix typo in restrict presubmit samples ITs to only snapshot (#826)
Fixes below error in Java repos when #804 was merged: ``` github/java-bigquerystorage/.kokoro/build.sh: line 81: pushd: {SAMPLES_DIR}: No such file or directory ``` Thanks @kolea2 for spotting this in Fusion build logs. cc @chingor13
1 parent 89c849b commit f68649c

File tree

1 file changed

+1
-1
lines changed
  • synthtool/gcp/templates/java_library/.kokoro

1 file changed

+1
-1
lines changed

synthtool/gcp/templates/java_library/.kokoro/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ samples)
7878

7979
if [[ -f ${SAMPLES_DIR}/pom.xml ]]
8080
then
81-
pushd {SAMPLES_DIR}
81+
pushd ${SAMPLES_DIR}
8282
mvn -B \
8383
-Penable-samples \
8484
-DtrimStackTrace=false \

0 commit comments

Comments
 (0)