We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I honestly dont understand why the file path passed to cli as $ node-dbf convert file.dbf
$ node-dbf convert file.dbf
get joined to node-dbf folder inside node_modules.
I ended up replacing this line:
node-dbf/bin/node-dbf-convert.js
Line 16 in 12fb719
with: .action(function(f) { file = f; })
.action(function(f) { file = f; })
this solved the issue and allowed me to convert to csv, but feels like I'm missing something.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I honestly dont understand why the file path passed to cli as
$ node-dbf convert file.dbf
get joined to node-dbf folder inside node_modules.
I ended up replacing this line:
node-dbf/bin/node-dbf-convert.js
Line 16 in 12fb719
with:
.action(function(f) { file = f; })
this solved the issue and allowed me to convert to csv, but feels like I'm missing something.
The text was updated successfully, but these errors were encountered: