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
const bazelVersion = await readBazelToolsVersionFile(repoRootPath, '.bazelversion'); // Check what globals are installed
48149
48149
48150
-
_log__WEBPACK_IMPORTED_MODULE_4__["log"].debug(`[bazel_tools] verify if bazelisk is installed`); // Test if bazelisk is already installed in the correct version
48150
+
_log__WEBPACK_IMPORTED_MODULE_4__["log"].debug(`[bazel_tools] verify if bazelisk is installed`); // Check if we need to remove bazelisk from yarn
48151
48151
48152
-
const isBazeliskPkgInstalled = await isBazeliskInstalled(bazeliskVersion); // Test if bazel bin is available
48152
+
await tryRemoveBazeliskFromYarnGlobal(); // Test if bazelisk is already installed in the correct version
48153
48153
48154
-
const isBazelBinAlreadyAvailable = await isBazelBinAvailable(); // Check if we need to remove bazelisk from yarn
48154
+
const isBazeliskPkgInstalled = await isBazeliskInstalled(bazeliskVersion); // Test if bazel bin is available
48155
48155
48156
-
await tryRemoveBazeliskFromYarnGlobal(); // Install bazelisk if not installed
48156
+
const isBazelBinAlreadyAvailable = await isBazelBinAvailable(); // Install bazelisk if not installed
48157
48157
48158
48158
if (!isBazeliskPkgInstalled || !isBazelBinAlreadyAvailable) {
0 commit comments