separate ruby + shell build scripts into their own directories
This commit is contained in:
parent
4b24234362
commit
7a40a68811
12 changed files with 777 additions and 0 deletions
5
soundfont-generator/shell/inc/gen-base64.js
Normal file
5
soundfont-generator/shell/inc/gen-base64.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
var fs = require('fs');
|
||||
var file = process.argv[2];
|
||||
fs.readFile(file, 'binary', function(err, data) {
|
||||
console.log(new Buffer(data, 'binary').toString('base64'));
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue