mirror of
https://github.com/octoleo/restic.git
synced 2024-11-04 20:37:49 +00:00
03ca69407d
Also disables automatic creation on open
21 lines
336 B
Go
21 lines
336 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/fd0/khepri"
|
|
)
|
|
|
|
func commandInit(path string) error {
|
|
repo, err := khepri.CreateRepository(path)
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "creating repository at %s failed: %v\n", path, err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
fmt.Printf("created khepri repository at %s\n", repo.Path())
|
|
|
|
return nil
|
|
}
|