genotrance / nimgen

Nimgen is a helper for c2nim to simplify and automate the wrapping of C libraries
MIT License
114 stars 11 forks source link

Fix off by one error in execAction #48

Closed oskaritimperi closed 4 years ago

oskaritimperi commented 5 years ago

When the executed command length is less than or equal to 64 characters in total (including the shell invocation) then echoing the command will raise an exception. This is because .. is inclusive. So we were trying to take one character too big slice from the command string.