diff options
author | bloodstalker <thabogre@gmail.com> | 2017-07-02 19:48:35 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-07-02 19:48:35 +0000 |
commit | 72d77d13c2ebedff55a7ec90c32f41bce1ded969 (patch) | |
tree | 3083b9f99381f6b4d8099d6316126867ceb0cf2a | |
parent | updated (diff) | |
download | mutator-72d77d13c2ebedff55a7ec90c32f41bce1ded969.tar.gz mutator-72d77d13c2ebedff55a7ec90c32f41bce1ded969.zip |
new command
Diffstat (limited to '')
-rw-r--r-- | bruiser/bruiser-extra.h | 1 | ||||
-rw-r--r-- | bruiser/bruiser.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/bruiser/bruiser-extra.h b/bruiser/bruiser-extra.h index a8f698e..65d63df 100644 --- a/bruiser/bruiser-extra.h +++ b/bruiser/bruiser-extra.h @@ -118,6 +118,7 @@ std::vector<std::string> LUA_FUNCS = "getmakepath", "getsourcefiles", "getpaths", + "changedirectory", "_G", "_VERSION", "assert", diff --git a/bruiser/bruiser.h b/bruiser/bruiser.h index cfc9916..5ebdc76 100644 --- a/bruiser/bruiser.h +++ b/bruiser/bruiser.h @@ -144,7 +144,8 @@ help CMDHelp[] = { {"getbinpath()", "getbinpath()", "gets the binary path for mutant executable", "none", "string"}, {"getmakepath()", "getmakepath()", "gets the make path for mutant executable", "none", "string"}, {"getpaths()", "getpaths()", "gets the currently loaded paths that bruiser looks through", "none", "array of strings"}, - {"getsourcefiles()", "getsourcefiles()", "gets the currently loaded source files that bruiser will look through", "none", "array of strings"} + {"getsourcefiles()", "getsourcefiles()", "gets the currently loaded source files that bruiser will look through", "none", "array of strings"}, + {"changedirectory()", "changedirectory()", "changes bruiser's working directory. only use it when you know what you are doing.", "destination directory, [string]", "return value"} }; /**********************************************************************************************************************/ /** |