Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lainq committed May 25, 2021
1 parent 7aefcfe commit 1583fe8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion vinit/arguments/arguments.v
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub fn (mut parser ArgumentParser) parse() ?(string, map[string]string) {
mut params := map[string]string{}

if parser.arguments.len == 0 {
println("Read the documentation - https://github.com/pranavbaburaj/vinit/tree/main/docs")
println('Read the documentation - https://github.com/pranavbaburaj/vinit/tree/main/docs')
exit(1)
}

Expand Down
14 changes: 7 additions & 7 deletions vinit/arguments/perform.v
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
module arguments

import commands {
DependencyFiles,
execute_v_script,
get,
initialize_v_project,
install
}
import commands {
DependencyFiles,
execute_v_script,
get,
initialize_v_project,
install,
}
import os { getwd }

pub fn execute_command(command CurrentCharacterType, parameters map[string]string) {
Expand Down
22 changes: 11 additions & 11 deletions vinit/commands/get.v
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
module commands

import os {
create,
getwd,
is_dir,
is_file,
join_path,
mkdir,
read_file,
vmodules_dir,
import os {
create,
execute,
getwd,
is_dir,
is_file,
join_path,
mkdir,
read_file,
vmodules_dir,
write_file,
execute
}
}
import exception { VinitException }

struct CloneRepository {
Expand Down

0 comments on commit 1583fe8

Please sign in to comment.