1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-06 00:03:32 +00:00

Make sure high level retries show with -q - fixes #648

Also update the exit code documentation describing that.
This commit is contained in:
Nick Craig-Wood
2016-09-12 15:42:57 +01:00
parent bbf819e2d1
commit 4001e21624
3 changed files with 23 additions and 12 deletions

View File

@@ -4,8 +4,7 @@
package main
import (
"fmt"
"os"
"log"
"github.com/ncw/rclone/cmd"
_ "github.com/ncw/rclone/cmd/all" // import all commands
@@ -14,8 +13,6 @@ import (
func main() {
if err := cmd.Root.Execute(); err != nil {
fmt.Println(err)
os.Exit(-1)
log.Fatalf("Fatal error: %v", err)
}
os.Exit(0)
}