diff --git a/lib/core/playcmds/play_git.v b/lib/core/playcmds/play_git.v index 8cd5ff8b..e3e1f5dc 100644 --- a/lib/core/playcmds/play_git.v +++ b/lib/core/playcmds/play_git.v @@ -1,10 +1,9 @@ module playcmds import freeflowuniverse.herolib.develop.gittools -import freeflowuniverse.herolib.core.playbook { PlayBook } +import freeflowuniverse.herolib.core.playbook import freeflowuniverse.herolib.ui.console - pub fn play_git(args_ PlayArgs) !PlayBook { mut args := args_ mut plbook := args.plbook or { @@ -92,31 +91,31 @@ pub fn play_git(args_ PlayArgs) !PlayBook { for mut repo in repos { match action_type { 'pull' { - repo.pull(submodules: submodules) + repo.pull(submodules: submodules)! } 'commit' { - repo.commit(message) + repo.commit(message)! } 'push' { - repo.push() + repo.push()! } 'reset' { - repo.reset() + repo.reset()! } 'branch_create' { - repo.branch_create(branchname) + repo.branch_create(branchname)! } 'branch_switch' { - repo.branch_switch(branchname) + repo.branch_switch(branchname)! } 'tag_create' { - repo.tag_create(tagname) + repo.tag_create(tagname)! } 'tag_switch' { - repo.tag_switch(tagname) + repo.tag_switch(tagname)! } 'delete' { - repo.delete() + repo.delete()! } else { if !error_ignore { @@ -144,7 +143,7 @@ pub fn play_git(args_ PlayArgs) !PlayBook { account: account provider: provider status_update: status_update - ) + )! } // Handle !!git.reload_cache @@ -155,7 +154,7 @@ pub fn play_git(args_ PlayArgs) !PlayBook { if coderoot.len > 0 { gs = gittools.new(coderoot: coderoot)! } - gs.load(true) // Force reload + gs.load(true)! // Force reload } return plbook