mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 01:28:17 -07:00
fix: correct order of checks in conditional for adding a missing newline (#1418)
We need to add trailing newlines to .tool-versions file before appending a new version to the file. The order of the checks was wrong here as the first check assumed the file existed, and the second checked if it did. Switching them fixes the issue. This fix was provided by @h3y6e Fixes #1417
This commit is contained in:
parent
60d4494d5d
commit
4125d2b556
@ -64,8 +64,8 @@ version_command() {
|
|||||||
sed -i.bak -e "s|^$plugin_name .*$|$plugin_name ${resolved_versions[*]}|" "$file"
|
sed -i.bak -e "s|^$plugin_name .*$|$plugin_name ${resolved_versions[*]}|" "$file"
|
||||||
rm -f "$file".bak
|
rm -f "$file".bak
|
||||||
else
|
else
|
||||||
# Add a trailing newline at the end of the file if missing
|
# Add a trailing newline at the end of the file if missing and file present
|
||||||
[[ -n "$(tail -c1 "$file")" && -f "$file" ]] && printf '\n' >>"$file"
|
[[ -f "$file" && -n "$(tail -c1 "$file")" ]] && printf '\n' >>"$file"
|
||||||
|
|
||||||
# Add a new version line to the end of the file
|
# Add a new version line to the end of the file
|
||||||
printf "%s %s\n" "$plugin_name" "${resolved_versions[*]}" >>"$file"
|
printf "%s %s\n" "$plugin_name" "${resolved_versions[*]}" >>"$file"
|
||||||
|
Loading…
Reference in New Issue
Block a user