Skip to content

Commit

Permalink
Merge pull request #3 from reactioncommerce/fix-aldeed-namespace-error
Browse files Browse the repository at this point in the history
fix: fix undefined variable in namespace error msg
  • Loading branch information
kieckhafer authored Feb 10, 2020
2 parents fbee477 + b621e8a commit 332b5ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/loadConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async function loadConfig(configFilePath, { log = () => {} } = {}) {

const trackInfo = packageMigrationConfig.tracks.find((packageTrack) => packageTrack.namespace === namespace);
if (!trackInfo) {
log(`Cannot find migration namespace ${namespace} defined in ${fullTrackMigrationsFilePath}`, "error");
log(`Cannot find migration namespace ${namespace} defined in ${importPath}`, "error");
return null;
}

Expand Down

0 comments on commit 332b5ff

Please sign in to comment.