diff --git a/cmd/tools/vbuild-tools.v b/cmd/tools/vbuild-tools.v index dce79ec7ed..a517417c1b 100644 --- a/cmd/tools/vbuild-tools.v +++ b/cmd/tools/vbuild-tools.v @@ -11,7 +11,7 @@ import v.util // should be compiled (v folder). // To implement that, these folders are initially skipped, then added // as a whole *after the testing.prepare_test_session call*. -const tools_in_subfolders = ['vdoc', 'vvet', 'vast', 'vwhere'] +const tools_in_subfolders = ['vdoc', 'vvet', 'vast', 'vwhere', 'vcreate'] // non_packaged_tools are tools that should not be packaged with // prebuild versions of V, to keep the size smaller. diff --git a/cmd/tools/vcreate.v b/cmd/tools/vcreate/vcreate.v similarity index 100% rename from cmd/tools/vcreate.v rename to cmd/tools/vcreate/vcreate.v diff --git a/cmd/tools/vcreate_test.v b/cmd/tools/vcreate/vcreate_test.v similarity index 100% rename from cmd/tools/vcreate_test.v rename to cmd/tools/vcreate/vcreate_test.v