You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ifstrings.Contains(err.Error(), "Trying to read a database file with version number") {
281
+
returnnil, fmt.Errorf("database file was created with an older, incompatible version of Rill (please remove `tmp` directory and try again)")
282
+
}
283
+
275
284
// Check for another process currently accessing the DB
276
285
ifstrings.Contains(err.Error(), "Could not set lock on file") {
277
286
returnnil, fmt.Errorf("failed to open database (is Rill already running?): %w", err)
278
287
}
288
+
289
+
ifstrings.Contains(err.Error(), "Symbol not found") {
290
+
fmt.Printf("Your version of macOS is not supported. Please upgrade to the latest major release of macOS. See this link for details: https://support.apple.com/en-in/macos/upgrade")
0 commit comments