Implement a workaround with debugging, see #14

This commit is contained in:
flow.gunso
2020-01-30 21:38:33 +01:00
parent 1f5fcf8c29
commit 9438004c9d

View File

@@ -41,5 +41,8 @@ cmd="seaf-cli sync -u $SEAF_USERNAME -p $SEAF_PASSWORD -s $SEAF_SERVER_URL -l $S
# Run it. # Run it.
if ! eval $cmd; then echo "Failed to synchronize."; exit 1; fi if ! eval $cmd; then echo "Failed to synchronize."; exit 1; fi
# Continously print the log. # Continously print the log, infinitely.
tail -f ~/.ccnet/logs/seafile.log while true; do
tail -v -f ~/.ccnet/logs/seafile.log
echo $?
done