diff --git a/cmd/sync/sync.go b/cmd/sync/sync.go index d13a85d0..510f859b 100644 --- a/cmd/sync/sync.go +++ b/cmd/sync/sync.go @@ -56,6 +56,9 @@ func syncOptionsFromArgs(cmd *cobra.Command, args []string) (*sync.SyncOptions, // exist and add it to the `.gitignore` file in the root. SnapshotBasePath: filepath.Join(args[0], ".databricks"), WorkspaceClient: databricks.Must(databricks.NewWorkspaceClient()), + + PersistSnapshot: true, + AllowOverwrites: true, } return &opts, nil }