Merge pull request #3105 from restic/fix-init-repo-file

Allow using --repository-file in init
This commit is contained in:
rawtaz
2020-11-17 21:54:44 +01:00
committed by GitHub

View File

@@ -43,10 +43,6 @@ func init() {
} }
func runInit(opts InitOptions, gopts GlobalOptions, args []string) error { func runInit(opts InitOptions, gopts GlobalOptions, args []string) error {
if gopts.Repo == "" {
return errors.Fatal("Please specify repository location (-r)")
}
chunkerPolynomial, err := maybeReadChunkerPolynomial(opts, gopts) chunkerPolynomial, err := maybeReadChunkerPolynomial(opts, gopts)
if err != nil { if err != nil {
return err return err