Fix incorrect file extension for fish

This commit is contained in:
Manuel Thalmann 2024-03-25 18:07:40 +01:00
parent c02595a257
commit 694fac8edb
3 changed files with 8 additions and 7 deletions
scripts/Common/Config/bash

View file

@ -5,7 +5,7 @@ pushd "${BASH_SOURCE%/*}" > /dev/null;
function addBashProfile() {
name="$1";
title="$2";
addProfileStatement "$name" "$title" "/bin/bash" "/etc/bash/conf.d" "${@:3}";
addProfileStatement "$name" "$title" "/bin/bash" "sh" "/etc/bash/conf.d" "${@:3}";
}
popd > /dev/null;