We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 663881f commit 5aa4423Copy full SHA for 5aa4423
entry_point.cpp
@@ -266,7 +266,10 @@ int module_open() {
266
Interstellar::Debug::api();
267
Interstellar::Table::api();
268
Interstellar::Math::api();
269
- Interstellar::OS::api();
+ if (Interstellar::OS::ARGV::exists("os")) {
270
+ Interstellar::OS::api();
271
+ std::cout << "[WARNING] Interstellar has os.* enabled, you have been warned." << std::endl;
272
+ }
273
274
// Extensions
275
if (Interstellar::OS::ARGV::exists("fs")) {
0 commit comments