diff options
author | Matt Godbolt <matt@godbolt.org> | 2017-01-02 10:11:29 -0600 |
---|---|---|
committer | Matt Godbolt <matt@godbolt.org> | 2017-01-02 10:11:29 -0600 |
commit | 1b02040826fa36dcd2ff6ded5a4c3e809cf877b9 (patch) | |
tree | f054a6d90b105b3abef8f907ab7182b0571dfe0f /lib/diff.js | |
parent | f61825b2bed2a3c1d3553013dd5bdceb5320ef14 (diff) | |
download | compiler-explorer-1b02040826fa36dcd2ff6ded5a4c3e809cf877b9.tar.gz compiler-explorer-1b02040826fa36dcd2ff6ded5a4c3e809cf877b9.zip |
s/gcc-explorer/compiler-explorer/g
Diffstat (limited to 'lib/diff.js')
-rw-r--r-- | lib/diff.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/diff.js b/lib/diff.js index cf73cbdf7..4566623ca 100644 --- a/lib/diff.js +++ b/lib/diff.js @@ -139,7 +139,7 @@ function cleanAndGetIndexes(text) { function newTempDir() { return new Promise(function (resolve, reject) { - temp.mkdir('gcc-explorer-diff', function (err, dirPath) { + temp.mkdir('compiler-explorer-diff', function (err, dirPath) { if (err) reject("Unable to open temp file: " + err); else @@ -170,8 +170,8 @@ function buildDiffHandler(config) { var tempBeforePath, tempAfterPath; newTempDir() .then(function (tmpDir) { - tempBeforePath = path.join(tmpDir, "gcc-explorer-wdiff-before"); - tempAfterPath = path.join(tmpDir, "gcc-explorer-wdiff-after"); + tempBeforePath = path.join(tmpDir, "compiler-explorer-wdiff-before"); + tempAfterPath = path.join(tmpDir, "compiler-explorer-wdiff-after"); return Promise.all( writeFile(tempBeforePath, before), writeFile(tempAfterPath, after) |