1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tooling: add tools/oldv , for use with 'git bisect', or for testing with older V

This commit is contained in:
Delyan Angelov
2019-12-08 19:21:17 +02:00
committed by Alexander Medvednikov
parent 4d1f721558
commit 1bb38a38bb
4 changed files with 265 additions and 1 deletions

View File

@ -1069,3 +1069,7 @@ pub fn tmpdir() string {
pub fn chmod(path string, mode int) {
C.chmod(path.str, mode)
}
pub const (
wd_at_startup = getwd()
)