mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
os: implement a JS version of os.join_path_single too
This commit is contained in:
parent
7a0dc60d04
commit
6a252ed015
@ -102,6 +102,11 @@ pub fn join_path(base string, dirs ...string) string {
|
||||
return res
|
||||
}
|
||||
|
||||
pub fn join_path_single(base string, elem string) string {
|
||||
// TODO: deprecate this
|
||||
return join_path(base, elem)
|
||||
}
|
||||
|
||||
pub fn execute(cmd string) Result {
|
||||
mut exit_code := 0
|
||||
mut stdout := ''
|
||||
|
Loading…
Reference in New Issue
Block a user