William Crandell

Results 72 comments of William Crandell

Create a feature override branch that does override and implements newer behaviors there and use that to create a secondary script perhaps array_column_7. I know a single script is probably...

not able to reproduce this though this is related https://github.com/CrandellWS/gistup/commit/54e6c687455507d23986743810f45ff1c88cdcda

I can bypass the mentioned error https://github.com/mbostock/gistup/issues/22#issue-90510743 using underscores like so ``` function gitCommit(callback) { child.exec("git commit --allow-empty -m 'Initial_gistup_commit'", function(error, stdout, stderr) { if (!error && stderr) process.stderr.write(stderr), error...

Ok **it is creating the Gist on GitHub** in MINGW64 using https://github.com/mbostock/gistup/tree/c6f3b193de8a99f6275496ec2dd6761b57c3e598

So a note to myself https://github.com/CrandellWS/gistup/commit/ac982d14359cc529f5bf01c58fd4f728952e501c from where I had not realized there was a problem with ssh (had not even tried yet, thought it was setup but do to...

Got this much figured out from https://gist.github.com/leommoore/4484379#passing-environment-variables ``` function gitTestWin(callback) { var env = process.env, varName, envCopy = {}; // Copy process.env into envCopy for (varName in env) { envCopy[varName]...

Cross platform??> ``` var env = process.env, varName, envArgv, envCopy = {}; // Copy process.env into envCopy for (varName in env) { envCopy[varName] = env[varName]; } envCopy['wtf'] = 'It is...

Here is what I have got so far https://github.com/CrandellWS/gistup/commit/6114d26d98d70968176975b094f2af86d5e4973c Though it looks like more can still be done.

With Windows this works ``` function gitCommit(callback) { child.exec('git commit --allow-empty -m "Initial gistup commit"',function(error, stdout, stderr) { if (!error && stderr) process.stderr.write(stderr), error = new Error("git commit failed."); if...

bit stuck on Right single quotation mark (U+2019) vs. Apostrophe (U+0027) not sure what to do