File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ case "$1" in
19
19
" w" | " wiggle" )
20
20
scripts/wigglePatch.py
21
21
;;
22
+ " u" | " updateUpstream" )
23
+ scripts/updateUpstream.sh
24
+ ;;
22
25
* )
23
26
echo " HyperFall build tool command. This provides a variety of commands to control the Travertine"
24
27
echo " build. View below for details of the available commands."
@@ -31,5 +34,6 @@ case "$1" in
31
34
echo " | The bootstrap artifact can be found in Travertine-Proxy/bootstrap/target/"
32
35
echo " * e, edit | Runs git rebase -i for Waterfall, allowing patches to be easily modified"
33
36
echo " * w, wiggle | Helps to apply patches that fail to using default Git."
37
+ echo " * u, updateUpstream| Update Upstream (Waterfall)"
34
38
;;
35
39
esac
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ echo Merging upstream...
4
+ ./hyperfall m
5
+ echo Merged upstream!
6
+ read -rsp $' Press enter to continue...\n '
7
+ echo Applying all the patches to Waterfall...
8
+ ./hyperfall p
9
+ echo Applied all the patches to Waterfall!
10
+ echo Check to see if there is any conflicts and fix them if there are by fixing it in HyperFall-Proxy and running git am --continue.
11
+ read -rsp $' Press enter to continue...\n '
12
+ echo Rebuilding the patches...
13
+ ./hyperfall rb
14
+ echo Rebuilt the patches!
15
+ read -rsp $' Press enter to continue...\n '
You can’t perform that action at this time.
0 commit comments