Skip to content

Commit ed31f63

Browse files
Nathanael AndersonNathanWalker
authored andcommitted
This renames the function to checkIfTempInstall (#105)
1 parent c2b8ca4 commit ed31f63

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

scripts/postinstall.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*************************************************************************************
22
* Licensed under the APACHE license
33
*
4-
* Version 0.0.7 Nathan@master-technology.com
4+
* Version 0.0.8 Nathan@master-technology.com
55
************************************************************************************/
66
"use strict";
77

@@ -10,8 +10,8 @@ var fs = require("fs");
1010
var path = require("path");
1111
var os = require("os");
1212

13-
// Check for the Buggy TNS Behavior...
14-
checkIfTNSBug();
13+
// Check for the Duplicate Temp Install issue...
14+
checkIfTempInstall();
1515

1616
// Do we have detect SCSS support
1717
var hasSCSS = false;
@@ -146,7 +146,7 @@ function mkRecursiveDirectories(path) {
146146
/**
147147
* Check for The TNS double install buggy behavior...
148148
*/
149-
function checkIfTNSBug() {
149+
function checkIfTempInstall() {
150150
// Generic Node Temp folder
151151
var cwd = process.cwd();
152152
if (cwd.indexOf(os.tmpdir()) === 0) {

0 commit comments

Comments
 (0)