Skip to content

Commit

Permalink
Improve ace packaging. Fix Safari 4
Browse files Browse the repository at this point in the history
  • Loading branch information
jcheng5 committed Feb 16, 2011
1 parent b44a18f commit d89e9ee
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "src/gwt/tools/ace"]
path = src/gwt/tools/ace
url = git://github.com/jcheng5/ace.git
url = git@github.com:jcheng5/ace.git
2 changes: 1 addition & 1 deletion src/gwt/tools/ace
Submodule ace updated from cbe9fe to 9a7034
24 changes: 24 additions & 0 deletions src/gwt/tools/sync-ace-commits
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/bin/sh

set -e

cd ace
git checkout master

# Point this to the upstream commit that we've tested
git reset --hard 3d1469e33

git submodule update --init --recursive

# Merge all the bugfix branches
git merge forked-submodules bugfix-scrollbars bugfix-pagedown bugfix-webkit-paste bugfix-blankline


cd support/pilot
git merge bugfix-safari4
cd ../..


make clean
make
git commit -am "Update build"

0 comments on commit d89e9ee

Please sign in to comment.