Add Tests for 02_global_settings to pipeline. Update bindings #628

Merged
sarah merged 2 commits from integtest2 into trunk 2023-02-08 23:55:59 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 645fa83827 - Show all commits

View File

@ -154,9 +154,9 @@ class CwtchFfi implements Cwtch {
if (Platform.isLinux) {
home = envVars['HOME'] ?? "";
if (EnvironmentConfig.TEST_MODE) {
cwtchDir = envVars['CWTCH_HOME'] ?? path.join(envVars['HOME']!, ".cwtch");
} else {
cwtchDir = envVars['CWTCH_HOME']!;
} else {
cwtchDir = envVars['CWTCH_HOME'] ?? path.join(envVars['HOME']!, ".cwtch");
}