blob: 672f9b4b9e6ff73f77b43c278018f9a4e1ee31ed [file]
// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:io';
String computeRepoDir() {
ProcessResult result = Process.runSync(
'git',
['rev-parse', '--show-toplevel'],
runInShell: true,
workingDirectory: new File.fromUri(Platform.script).parent.path,
);
return (result.stdout as String).trim();
}
Uri computeRepoDirUri() {
String dirPath = computeRepoDir();
return new Directory(dirPath).uri;
}