fix import in get-app-name.js

This commit is contained in:
Ron Rennick 2021-02-08 15:57:58 -04:00
parent 81cdb4df94
commit d2fd592819
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
/**
* Provide the application name to bash scripts.
*/
const getAppName = require( './app-name' );
const { getAppName } = require( './app-name' );
const appName = getAppName();
console.log( appName );