We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1d1e4e commit 4bd1ba0Copy full SHA for 4bd1ba0
scripts/source_sync_5.0.2.sh
@@ -335,11 +335,18 @@ for ((i=0; i < NSOURCES; i++)); do
335
DNLOAD=$(echo "${SOURCE_INFO_PROCESSED[i]}" | cut -f 5 -d ':')
336
337
if [ $DALL -eq 1 -o "x${DNLOAD}" == "xy" ]; then
338
- DownloadAndSync "$WHAT" "${LDK_DIR}/${WHAT}" "git://${REPO}" "${TAG}" "${OPT}"
+ echo "before command"
339
+ DownloadAndSync "$WHAT" "${LDK_DIR}/${WHAT}" "https://${REPO}" "${TAG}" "${OPT}"
340
+ echo "after command"
341
tRET=$?
342
+ echo "after tRET , with tRet = ${tRet}"
343
let GRET=GRET+tRET
344
+ echo "after GRET, with GRET = ${GRET}"
345
if [ $tRET -ne 0 -a $EOE -eq 1 ]; then
346
+ echo "got in the if statement"
347
exit $tRET
348
+ else
349
+ echo "not in the if statement"
350
fi
351
352
done
0 commit comments