os: implement a JS version of os.join_path_single too
parent
7a0dc60d04
commit
6a252ed015
|
@ -102,6 +102,11 @@ pub fn join_path(base string, dirs ...string) string {
|
||||||
return res
|
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 {
|
pub fn execute(cmd string) Result {
|
||||||
mut exit_code := 0
|
mut exit_code := 0
|
||||||
mut stdout := ''
|
mut stdout := ''
|
||||||
|
|
Loading…
Reference in New Issue