Skip to content

Commit

Permalink
Fixes @Conductor path resolution when attempting to load a local .hoo…
Browse files Browse the repository at this point in the history
…ker.json configuration.
  • Loading branch information
allebb committed Jan 17, 2021
1 parent 612e6a6 commit 2680733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hooker.php
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@
checkKeyAuth($config);

if ($config['use_json']) {
$localConfigPath = $config['local_repo'] . '/.hooker.json';
$localConfigPath = buildLocalRepoPath($config['local_repo']) . '/.hooker.json';
debugLog("Deployment workflow is configured to use a local '.hooker.json' file, attempting to load this now from: {$localConfigPath}",
$config['debug']);
$config = array_merge($config, loadLocalHookerConf($localConfigPath, $config));
Expand Down

0 comments on commit 2680733

Please sign in to comment.