From 67efe8d75d79426ea7c8f4821d8077c0afbc4527 Mon Sep 17 00:00:00 2001 From: Nathanael Anderson Date: Fri, 4 Nov 2016 16:06:38 -0600 Subject: [PATCH] This renames the function to checkIfTempInstall --- scripts/postinstall.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/postinstall.js b/scripts/postinstall.js index 3f88bf0..4b6025a 100644 --- a/scripts/postinstall.js +++ b/scripts/postinstall.js @@ -1,7 +1,7 @@ /************************************************************************************* * Licensed under the APACHE license * - * Version 0.0.7 Nathan@master-technology.com + * Version 0.0.8 Nathan@master-technology.com ************************************************************************************/ "use strict"; @@ -10,8 +10,8 @@ var fs = require('fs'); var path = require('path'); var os = require('os'); -// Check for the Buggy TNS Behavior... -checkIfTNSBug(); +// Check for the Duplicate Temp Install issue... +checkIfTempInstall(); // Do we have detect SCSS support var hasSCSS = false; @@ -142,7 +142,7 @@ function mkRecursiveDirectories(path) { /** * Check for The TNS double install buggy behavior... */ -function checkIfTNSBug() { +function checkIfTempInstall() { // Generic Node Temp folder var cwd = process.cwd(); if (cwd.indexOf(os.tmpdir()) === 0) {