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

VGet: Fix for dot folder name import

This commit is contained in:
FoXy 2019-08-06 23:40:52 +04:30 committed by Alexander Medvednikov
parent 8d35649d90
commit fa99402314

View File

@ -30,12 +30,12 @@ fn main() {
return
}
home := os.home_dir()
if !os.dir_exists(home + '/.vmodules') {
if !os.dir_exists(home + '/.vmodules') {
println('Creating vmodules directory...')
os.chdir(home)
os.mkdir('.vmodules')
println('Done.')
}
os.exec('git -C "$home/.vmodules" clone --depth=1 $mod.url $mod.name')
os.exec('git -C "$home/.vmodules" clone --depth=1 $mod.url ' + mod.name.replace('.', '/'))
println(s)
}