Skip to content

Commit 6d61425

Browse files
committed
fix default config path
1 parent 785c789 commit 6d61425

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/functions/deployDefaultConfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const { FsInterface } = require( '@squirrel-forge/node-util' );
1313
* @return {Promise<void>} - May throw errors
1414
*/
1515
module.exports = async function deployDefaultConfig( name, read, target ) {
16-
const data = require( './' + read );
16+
const data = require( '../' + read );
1717
const resolved = path.resolve( target, name );
1818
const config_exists = await FsInterface.exists( resolved );
1919
if ( config_exists ) {

0 commit comments

Comments
 (0)