kibana/x-pack/build_chromium/linux/init.sh
Chris Davies 22aa6caba4
Convert Chromium reports to puppeteer (#21788)
Update Chromium to a recent version compatible with Puppeteer.

Update Chromium build scripts to initialize build environments and work with
recent versions of Chromium.

Modify Chromium reporting logic to be driven mostly by Puppeteer.
2018-08-29 20:16:06 -04:00

14 lines
402 B
Bash
Executable file

#!/bin/bash
# Initializes a Linux environment. This need only be done once per
# machine. The OS needs to be a flavor that supports apt get, such as Ubuntu.
if ! [ -x "$(command -v python)" ]; then
echo "Installing Python"
sudo apt-get --assume-yes install python
fi
# Launch the cross-platform init script using a relative path
# from this script's location.
python "`dirname "$0"`/../init.py"