You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.Warning "Using the Buck build-system since a .buckconfig file was found. Set BUCKAROO_USE_BAZEL to override this. "
40
42
return Buck
41
43
else
42
-
return Bazel
44
+
let!hasBuckConfig= Files.exists ".buckconfig"
45
+
46
+
if hasBuckConfig
47
+
then
48
+
logger.Warning "Using the Buck build-system since a .buckconfig file was found. Set BUCKAROO_USE_BAZEL to override this or BUCKAROO_USE_BUCK to hide this warning. "
49
+
return Buck
50
+
else
51
+
return Bazel
43
52
}
44
53
45
-
46
54
letprivategetCachePath=async{
47
55
return
48
56
match System.Environment.GetEnvironmentVariable("BUCKAROO_CACHE_PATH")with
0 commit comments