We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94c9692 commit 3abb91aCopy full SHA for 3abb91a
scripts/svm/buildHelpers/buildSolanaVerify.sh
@@ -19,7 +19,9 @@ for program in programs/*; do
19
20
# We don't need keypair files from the verified build and they cause permission issues on CI when Swatinem/rust-cache
21
# tries to delete them.
22
- echo "Removing target/deploy/$program_name-keypair.json"
23
- sudo rm -f "target/deploy/$program_name-keypair.json"
+ if [[ "${CI:-}" == "true" ]]; then
+ echo "Removing target/deploy/$program_name-keypair.json"
24
+ sudo rm -f "target/deploy/$program_name-keypair.json"
25
+ fi
26
27
done
0 commit comments