also call/deploy update

This commit is contained in:
NikVolf
2018-05-18 16:29:35 +04:00
parent f9540c5423
commit 816f14eac7
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -22,12 +22,12 @@ fn main() {
.short("e")
.takes_value(true)
.value_name("functions")
.help("Comma-separated list of exported functions to keep. Default: _call"))
.help("Comma-separated list of exported functions to keep. Default: 'call'"))
.get_matches();
let exports = matches
.value_of("exports")
.unwrap_or("_call")
.unwrap_or("call")
.split(',')
.collect();