We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1053878 commit edf5662Copy full SHA for edf5662
R/zzz.R
@@ -72,10 +72,11 @@
72
73
.onAttach <- function(libname, pkgname) {
74
if (interactive()) {
75
+ os_version <- utils::osVersion
76
packageStartupMessage(
77
"TileDB R ", packageVersion("tiledb"),
78
" with TileDB Embedded ", format(tiledb_version(TRUE)),
- " on ", utils::osVersion,
79
+ " on ", if (is.null(os_version)) "<unknown OS>" else os_version,
80
".\nSee https://tiledb.com for more information about TileDB."
81
)
82
}
0 commit comments