Skip to content

Commit

Permalink
engine: improve error msg if file matches no syncs (#3575)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Miller committed Jul 10, 2020
1 parent e4e8b3f commit 3ab9a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/engine/live_update_build_and_deployer.go
Expand Up @@ -215,7 +215,7 @@ func liveUpdateInfoForStateTree(stateTree liveUpdateStateTree) (liveUpdInfo, err
if len(pathsMatchingNoSync) > 0 {
prettyPaths := ospath.FileListDisplayNames(iTarget.LocalPaths(), pathsMatchingNoSync)
return liveUpdInfo{}, buildcontrol.RedirectToNextBuilderInfof(
"Found file(s) not matching any sync (files: %s)", strings.Join(prettyPaths, ", "))
"Found file(s) not matching any sync for %s (files: %s)", iTarget.ID(), strings.Join(prettyPaths, ", "))
}

// If any changed files match a FallBackOn file, fall back to next BuildAndDeployer
Expand Down

0 comments on commit 3ab9a5a

Please sign in to comment.