| 128 | } |
| 129 | |
| 130 | static std::string GetCurrentWorkingDirectory() |
| 131 | { |
| 132 | char cwdPath[PATH_MAX]; |
| 133 | if (getcwd(cwdPath, sizeof(cwdPath)) != nullptr) |
| 134 | { |
| 135 | return cwdPath; |
| 136 | } |
| 137 | return std::string(); |
| 138 | } |
| 139 | |
| 140 | std::string GetInstallPath() |
| 141 | { |