Skip to content

Commit

Permalink
make: Fix typo in xcodemake.
Browse files Browse the repository at this point in the history
Wrong slice index resulted in first / being stripped.
  • Loading branch information
bradleysepos committed Sep 23, 2019
1 parent 86e0173 commit 6e27470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make/xcodemake
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ if [ -n "$reconfigure" ]; then
fi
done
PATH="${PATH}${APPLE_PATH}"
export PATH="${PATH:2}"
export PATH="${PATH:1}"
echo "Unclobbering PATH:"
echo " export PATH=\"${PATH}\""

Expand Down

0 comments on commit 6e27470

Please sign in to comment.