1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/cmd/tools/vwipe-cache.v
2021-07-29 14:25:33 +03:00

17 lines
256 B
V

module main
import os
import v.vcache
fn main() {
_ := map{
1: 1
}
mut cm := vcache.new_cache_manager([])
cpath := cm.basepath
if os.exists(cpath) && os.is_dir(cpath) {
os.rmdir_all(cpath) or {}
}
println('V cache folder $cpath was wiped.')
}