Skip to content
This repository was archived by the owner on Apr 6, 2021. It is now read-only.

Commit d73bd88

Browse files
author
Alex Harley
committed
build: adding additional log lines to setupJ2OBJC
1 parent 9e1431d commit d73bd88

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scripts/setupJ2OBJC.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,23 @@ echo '# J2OBJC End' >> $DIRECTORY/../local.properties;
2323
mkdir -p $J2OBJC_ROOT;
2424
pushd $J2OBJC_ROOT;
2525
if [ ! -f "$J2OBJC_ROOT/j2objc-$J2OBJCVersion.zip" ]; then
26+
echo "wget -q --retry-connrefused --waitretry=1 https://github.com/google/j2objc/releases/download/$J2OBJCVersion/j2objc-$J2OBJCVersion.zip"
2627
wget -q --retry-connrefused --waitretry=1 https://github.com/google/j2objc/releases/download/$J2OBJCVersion/j2objc-$J2OBJCVersion.zip
2728
else
2829
rm -rf $J2OBJC_ROOT/j2objc-$J2OBJCVersion
2930
echo 'j2objc already downloaded';
3031
fi
3132

33+
echo "Looking at dir contents"
34+
pwd
35+
ls
36+
3237
echo 'unzipping';
3338
unzip -q j2objc-$J2OBJCVersion.zip; popd
3439

40+
pwd
41+
ls
42+
3543
if [ $1 ]; then
3644
rm -rf j2objc-$J2OBJCVersion.zip;
3745
fi

0 commit comments

Comments
 (0)