From fd70d2122c938d6222ce20eb9aa945f1c5b59804 Mon Sep 17 00:00:00 2001 From: Leonardo Correa Date: Mon, 16 Nov 2015 17:27:02 +1100 Subject: [PATCH] fix: postinstall config name file created should be called `.cz-config.js` closes #4 --- postinstall.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postinstall.js b/postinstall.js index 44cfaff..bfb68eb 100644 --- a/postinstall.js +++ b/postinstall.js @@ -4,7 +4,7 @@ var path = require('path'); var fs = require('fs'); var SYM_LINK_LOCATION = './cz-config'; -var CZ_CONFIG_NAME = '.cz-config'; +var CZ_CONFIG_NAME = '.cz-config.js'; var CZ_CONFIG_EXAMPLE_LOCATION = './cz-config-EXAMPLE.js';