Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: vpython/venv/system_posix.go

Issue 2699063004: vpython: Add VirtualEnv creation package. (Closed)
Patch Set: remake binaries Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The LUCI Authors. All rights reserved.
2 // Use of this source code is governed under the Apache License, Version 2.0
3 // that can be found in the LICENSE file.
4
5 // +build darwin linux freebsd netbsd openbsd android
6
7 package venv
8
9 import (
10 "path/filepath"
11 )
12
13 // venvBinPath resolves the path to a VirtualEnv binary.
14 func venvBinPath(root, name string) string {
15 return filepath.Join(root, "bin", name)
16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698