Skip to content

Commit 45ba08b

Browse files
committed
Rename variable
1 parent a80f3ab commit 45ba08b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/scripts/preuninstall

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var ROOT_DIR = path.resolve( __dirname, '..', '..' );
3838
var PKG_DIR = path.join( ROOT_DIR, 'lib', 'node_modules', '@stdlib' );
3939

4040
// Resolve the post-install meta data file:
41-
var POST_INSTALL_FILE = path.join( ROOT_DIR, '.postinstall.json' );
41+
var META_FILE = path.join( ROOT_DIR, '.postinstall.json' );
4242

4343

4444
// MAIN //
@@ -58,7 +58,7 @@ function main() {
5858
debug( 'Package directory: %s', PKG_DIR );
5959

6060
debug( 'Reading meta data...' );
61-
paths = require( POST_INSTALL_FILE ); // eslint-disable-line no-dynamic-require
61+
paths = require( META_FILE ); // eslint-disable-line no-dynamic-require
6262

6363
debug( 'Reverting changes...' );
6464
for ( i = 0; i < paths.length; i++ ) {

0 commit comments

Comments
 (0)