Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/project-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ main() {
local chain_depth=0
local chain_display=""
# Read chain in reverse order (from requested profile back to base) for display
local reversed_chain=$(echo "$INHERITANCE_CHAIN" | tac)
local reversed_chain=$(echo "$INHERITANCE_CHAIN" | awk '{a[NR]=$0} END{for(i=NR;i>=1;i--)print a[i]}')
while IFS= read -r profile_name; do
[[ -z "$profile_name" ]] && continue
if [[ "$chain_depth" -eq 0 ]]; then
Expand Down