changed to mozilla-release

This commit is contained in:
partisan 2025-01-18 11:48:30 +01:00
parent 8de4db960a
commit c4693c4b14
3 changed files with 9 additions and 7 deletions

View file

@ -41,9 +41,9 @@ func CheckDependencies() error {
}
// Special check for `mach` in the local source directory
machPath := filepath.Join("mozilla-central", "mach")
machPath := filepath.Join("mozilla-release", "mach")
if !fileExists(machPath) {
missingTools = append(missingTools, "mach (ensure you are in the mozilla-central directory)")
missingTools = append(missingTools, "mach (ensure you are in the mozilla-release directory)")
}
// Report missing tools if any