/
githubmirror
/
rclone
Обзор
Документация
Войти
/
githubmirror
/
rclone
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.72.0
lib/exitcode/exitcode.go
27 строк
1 KB
albertony
cmd: change exit code from 1 to 2 for syntax and usage errors
20 сен 2024, 19:51
20 сен 2024, 19:51
a849fd5
Код
Авторство
О чём код?
// Package exitcode exports rclone's exit status numbers. package exitcode const ( // Success is returned when rclone finished without error. Success = iota // UncategorizedError is returned for any error not categorised otherwise. UncategorizedError // UsageError is returned when there was a syntax or usage error in the arguments. UsageError // DirNotFound is returned when a source or destination directory is not found. DirNotFound // FileNotFound is returned when a source or destination file is not found. FileNotFound // RetryError is returned for temporary errors during operations which may be retried. RetryError // NoRetryError is returned for errors from operations which can't/shouldn't be retried. NoRetryError // FatalError is returned for errors one or more retries won't resolve. FatalError // TransferExceeded is returned when network I/O exceeded the quota. TransferExceeded // NoFilesTransferred everything succeeded, but no transfer was made. NoFilesTransferred // DurationExceeded is returned when transfer duration exceeded the quota. DurationExceeded )