File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 14
14
"react-native" : " 0.44.0" ,
15
15
"react" : " 16.0.0-alpha.6" ,
16
16
"prop-types" : " *" ,
17
- "lodash" : " 4.x.x "
17
+ "lodash" : " latest "
18
18
},
19
19
"devDependencies" : {
20
20
"shell-utils" : " 1.x.x"
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ REVISION=$(svn info --show-item last-changed-revision "https://svn.webkit.org/re
5
5
INFO=$( svn info " https://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-${npm_package_config_webkitGTK} " )
6
6
CONFIG=$( node -e " console.log(require('./package.json').config)" )
7
7
8
- SIZE=$( du -ah $ROOTDIR /build/compiled || echo " - " )
8
+ SIZE=$( du -ah $ROOTDIR /build/compiled || true )
9
9
10
10
printf " \n\n\n\n\n\t\t\tRevision: \x1B[32m$REVISION \x1B[0m\n\n\n"
11
11
printf " Config:\n$CONFIG \n\n"
12
12
printf " Info:\n$INFO \n\n"
13
- printf " Size:\t $SIZE \n\n"
13
+ printf " Size:\n $SIZE \n\n"
Original file line number Diff line number Diff line change @@ -30,15 +30,15 @@ prep() {
30
30
patch -d $TARGETDIR -p1 < $ROOTDIR /patches/jsc.patch
31
31
32
32
# disable i18n for non-i18n build
33
- if ${ I18N}
33
+ if [[ " $ I18N" = false ]]
34
34
then
35
35
patch -d $TARGETDIR -N -p1 < $ROOTDIR /patches/intl/icu-disabled.patch
36
36
fi
37
37
38
38
# remove icu headers from WTF, so it won't use them instead of the ones from icu/host/common
39
39
rm -rf " $TARGETDIR " /webkit/Source/WTF/icu
40
40
41
- printf " orig: $( find $ROOTDIR /build/target | grep \. orig || true ) \n "
41
+ echo " orig: $( find $ROOTDIR /build/target | grep \. orig) "
42
42
}
43
43
44
44
compile () {
You can’t perform that action at this time.
0 commit comments