Skip to content

Commit 4bd1ba0

Browse files
committed
debug lines added
1 parent a1d1e4e commit 4bd1ba0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

scripts/source_sync_5.0.2.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,11 +335,18 @@ for ((i=0; i < NSOURCES; i++)); do
335335
DNLOAD=$(echo "${SOURCE_INFO_PROCESSED[i]}" | cut -f 5 -d ':')
336336

337337
if [ $DALL -eq 1 -o "x${DNLOAD}" == "xy" ]; then
338-
DownloadAndSync "$WHAT" "${LDK_DIR}/${WHAT}" "git://${REPO}" "${TAG}" "${OPT}"
338+
echo "before command"
339+
DownloadAndSync "$WHAT" "${LDK_DIR}/${WHAT}" "https://${REPO}" "${TAG}" "${OPT}"
340+
echo "after command"
339341
tRET=$?
342+
echo "after tRET , with tRet = ${tRet}"
340343
let GRET=GRET+tRET
344+
echo "after GRET, with GRET = ${GRET}"
341345
if [ $tRET -ne 0 -a $EOE -eq 1 ]; then
346+
echo "got in the if statement"
342347
exit $tRET
348+
else
349+
echo "not in the if statement"
343350
fi
344351
fi
345352
done

0 commit comments

Comments
 (0)