Skip to content

Commit

Permalink
tools WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
arakis committed Nov 2, 2019
1 parent db06a6b commit 575148d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions abctl
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,18 @@ function _test {
esac
}

function _tool {
case $1 in
msbuild)
(cd $ORIGIN_DIR && $msbuild ${@:2})
;;

*)
echo $"Usage: tool {msbuild}"
exit 1
esac
}

function _abspath {
loadenv auto
cd $ORIGIN_DIR;
Expand Down Expand Up @@ -650,6 +662,9 @@ case $1 in
_abspath ${@:2}
;;

tool)
_tool ${@:2}
;;

*)
echo $"Usage: abctl {configure|build|run|debug|clean|reset|logs|update}"
Expand Down

0 comments on commit 575148d

Please sign in to comment.