File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/gatsby/src/bootstrap Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -79,8 +79,8 @@ module.exports = async (program: any) => {
7979 const pluginVersions = flattenedPlugins . map ( p => p . version )
8080 const hashes = await Promise . all ( [
8181 md5File ( `package.json` ) ,
82- Promise . resolve ( md5File ( `gatsby-config.js` ) . catch ( ( ) => { } ) ) , // ignore as this file isn't required),
83- Promise . resolve ( md5File ( `gatsby-node.js` ) . catch ( ( ) => { } ) ) , // ignore as this file isn't required),
82+ Promise . resolve ( md5File ( `${ program . directory } / gatsby-config.js` ) . catch ( ( ) => { } ) ) , // ignore as this file isn't required),
83+ Promise . resolve ( md5File ( `${ program . directory } / gatsby-node.js` ) . catch ( ( ) => { } ) ) , // ignore as this file isn't required),
8484 ] )
8585 const pluginsHash = crypto
8686 . createHash ( `md5` )
You can’t perform that action at this time.
0 commit comments