We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a367a38 commit 2994717Copy full SHA for 2994717
1 file changed
.kokoro/system.sh
@@ -65,10 +65,10 @@ run_package_test() {
65
--location=global --keyring=ci --key=kokoro-secrets \
66
--ciphertext-file="${package_path}/system_tests/secrets.tar.enc" \
67
--plaintext-file="${package_path}/system_tests/secrets.tar"
68
- # Extract files directly into the package directory.
69
- # --strip-components=2 removes 'system_tests/data/' from the archived paths.
70
mkdir -p "${package_path}/system_tests/data"
71
- tar xvf "${package_path}/system_tests/secrets.tar" -C "${package_path}/system_tests/data/" --strip-components=2
+ # Extract from the package root.
+ # The tar already contains the 'system_tests/data/' path.
+ tar xvf "${package_path}/system_tests/secrets.tar" -C "${package_path}/"
72
73
rm "${package_path}/system_tests/secrets.tar"
74
;;
0 commit comments