Skip to content

Commit de2b4ad

Browse files
committed
fix error message
1 parent b4dad50 commit de2b4ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/orchestrator/bricks/bricks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ func getUsedByApps(
222222
if b.ID == brickId {
223223
id, err := idProvider.IDFromPath(app.FullPath)
224224
if err != nil {
225-
return usedByApps, fmt.Errorf("failed to get app ID for %s: %w", app.Name, err)
225+
return usedByApps, fmt.Errorf("failed to get app ID for %s: %w", app.FullPath, err)
226226
}
227227
usedByApps = append(usedByApps, AppReference{
228228
Name: app.Name,

0 commit comments

Comments
 (0)