2017-01-12 10:11:03 -08:00
|
|
|
#!/usr/bin/env bash
|
2013-05-14 09:31:20 -04:00
|
|
|
|
2017-01-12 10:11:03 -08:00
|
|
|
set -ex
|
2013-05-14 09:31:20 -04:00
|
|
|
|
2017-03-23 09:58:59 -07:00
|
|
|
script/cpplint
|
|
|
|
|
2017-01-12 10:11:03 -08:00
|
|
|
# Make cloned repository complete
|
|
|
|
git fetch --unshallow origin HEAD
|
2013-05-14 09:31:20 -04:00
|
|
|
|
2017-01-12 10:11:03 -08:00
|
|
|
# Clone Electron
|
|
|
|
git clone https://github.com/electron/electron --depth 1 --recursive
|
2013-05-14 09:31:20 -04:00
|
|
|
|
2017-01-12 10:11:03 -08:00
|
|
|
# Checkout current brightray commit into Electron
|
|
|
|
cd electron/vendor/brightray
|
|
|
|
git fetch ../../..
|
|
|
|
git reset --hard FETCH_HEAD
|
2013-05-14 09:31:20 -04:00
|
|
|
|
2017-01-12 10:11:03 -08:00
|
|
|
# Commit change
|
|
|
|
cd ../..
|
|
|
|
git add vendor/brightray
|
|
|
|
git config --local user.email "test@github.com"
|
|
|
|
git config --local user.name "Test"
|
|
|
|
git commit --message 'Upgrading brightray'
|
2013-05-14 09:31:20 -04:00
|
|
|
|
2017-01-12 10:11:03 -08:00
|
|
|
# Bootstrap Electron
|
|
|
|
npm run bootstrap -- --dev
|
2013-05-14 09:31:20 -04:00
|
|
|
|
2017-01-12 10:11:03 -08:00
|
|
|
# Build Electron with brightray commit
|
|
|
|
npm run build
|