remove bootstrap cache, which is only for master

This commit is contained in:
spalger 2019-03-08 08:54:20 -08:00
parent ab9131a655
commit 985a988563
2 changed files with 0 additions and 16 deletions

View file

@ -5,7 +5,6 @@ set -e
# move to Kibana root
cd "$(dirname "$0")/.."
source src/dev/ci_setup/extract_bootstrap_cache.sh
source src/dev/ci_setup/setup.sh
case "$JOB" in

View file

@ -1,15 +0,0 @@
#!/usr/bin/env bash
set -e
###
### Extract the bootstrap cache that we create in the packer_cache.sh script
###
bootstrapCache="$HOME/.kibana/bootstrap_cache/master.tar"
if [ -f "$bootstrapCache" ]; then
echo "extracting bootstrap_cache from $bootstrapCache";
tar -xf "$bootstrapCache";
else
echo "bootstrap_cache missing";
exit 1;
fi