Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions include/rootbench/RBConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ namespace RB {
inline std::string GetTempFs() {
if (char* tempfs = std::getenv("RB_TEMP_FS"))
return tempfs;

rb_abort("Please set the RB_TEMP_FS env variable!");
else {
printf("RB_TEMP_FS variable not defined. Using \"./\" instead.");
return "./";
}
}

inline std::string GetRootSys() {
Expand Down
Loading