Skip to content

Commit b649c44

Browse files
committed
fix scripts
1 parent b1afe74 commit b649c44

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

measure/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"react-native": "0.44.0",
1515
"react": "16.0.0-alpha.6",
1616
"prop-types": "*",
17-
"lodash": "4.x.x"
17+
"lodash": "latest"
1818
},
1919
"devDependencies": {
2020
"shell-utils": "1.x.x"

scripts/info.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ REVISION=$(svn info --show-item last-changed-revision "https://svn.webkit.org/re
55
INFO=$(svn info "https://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-${npm_package_config_webkitGTK}")
66
CONFIG=$(node -e "console.log(require('./package.json').config)")
77

8-
SIZE=$(du -ah $ROOTDIR/build/compiled || echo "-")
8+
SIZE=$(du -ah $ROOTDIR/build/compiled || true)
99

1010
printf "\n\n\n\n\n\t\t\tRevision: \x1B[32m$REVISION\x1B[0m\n\n\n"
1111
printf "Config:\n$CONFIG\n\n"
1212
printf "Info:\n$INFO\n\n"
13-
printf "Size:\t$SIZE\n\n"
13+
printf "Size:\n$SIZE\n\n"

scripts/start.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ prep() {
3030
patch -d $TARGETDIR -p1 < $ROOTDIR/patches/jsc.patch
3131

3232
# disable i18n for non-i18n build
33-
if ${I18N}
33+
if [[ "$I18N" = false ]]
3434
then
3535
patch -d $TARGETDIR -N -p1 < $ROOTDIR/patches/intl/icu-disabled.patch
3636
fi
3737

3838
#remove icu headers from WTF, so it won't use them instead of the ones from icu/host/common
3939
rm -rf "$TARGETDIR"/webkit/Source/WTF/icu
4040

41-
printf "orig: $(find $ROOTDIR/build/target | grep \.orig || true)\n"
41+
echo "orig: $(find $ROOTDIR/build/target | grep \.orig)"
4242
}
4343

4444
compile() {

0 commit comments

Comments
 (0)