Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions scripts/postinstall.js
Original file line number Diff line number Diff line change
@@ -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";

Expand All @@ -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;
Expand Down Expand Up @@ -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) {
Expand Down