lib/helpers: Don't rm "$profile_path" before writing to it
When the file is being re-created, we write to it, instead of appending to it. So, the rm here is unnecessary and prevents users from linking the profile file to another location that is potentially under version control. For instance, once could link to a profile file located at "$BASH_IT_CUSTOM/profiles/*.bash_it".
This commit is contained in:
@@ -511,7 +511,6 @@ function _bash-it-profile-save() {
|
|||||||
case "$RESP" in
|
case "$RESP" in
|
||||||
[yY])
|
[yY])
|
||||||
echo -e "${echo_green?}Overwriting profile '$name'...${echo_reset_color?}"
|
echo -e "${echo_green?}Overwriting profile '$name'...${echo_reset_color?}"
|
||||||
rm "$profile_path"
|
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
[nN] | "")
|
[nN] | "")
|
||||||
|
|||||||
Reference in New Issue
Block a user