/
githubmirror
/
rclone
Обзор
Документация
Войти
/
githubmirror
/
rclone
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
bin/bisect-rclone.sh
33 строки
910 B
Florian Klink
tree-wide: replace /bin/bash with /usr/bin/env bash
11 июн 2024, 14:47
11 июн 2024, 14:47
aed77a8
Код
Авторство
О чём код?
#!/usr/bin/env bash # Example script for git bisect run # # Copy this file into /tmp say before running as it will be # overwritten by the bisect as it is checked in. # # Change the test below to find out whether rclone is working or not # # Run from the project root # # git bisect start # git checkout master # git bisect bad # git checkout v1.41 (or whatever is the first good one) # git bisect good # git bisect run /tmp/bisect-rclone.sh set -e # Compile notifying git on compile failure make || exit 125 rclone version # Test whatever it is that is going wrong - exit with non zero exit code on failure # commented out examples follow # truncate -s 10M /tmp/10M # rclone delete azure:rclone-test1/10M || true # rclone --retries 1 copyto -vv /tmp/10M azure:rclone-test1/10M --azureblob-upload-cutoff 1M # rm -f "/tmp/tests's.docx" || true # rclone -vv --retries 1 copy "drive:test/tests's.docx" /tmp