Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: correct name in enable-bluefin-cli.sh #894

Merged
merged 1 commit into from
Feb 11, 2024
Merged
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
8 changes: 4 additions & 4 deletions usr/libexec/enable-bluefin-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ function default_login(){
toggle=$(Choose Default Not-Default Cancel)
if test "$toggle" = "Default"; then
echo "Setting Bluefin-CLI to default Prompt Profile"
/usr/libexec/prompt-create-profile bluefin-cli default
/usr/libexec/prompt-create-profile.sh bluefin-cli default
elif test "$toggle" = "Not-Default"; then
echo "Setting Host back to default Prompt Profile"
/usr/libexec/prompt-create-profile Host default
/usr/libexec/prompt-create-profile.sh Host default
else
dconf write /or
echo "Not Changing"
Expand Down Expand Up @@ -65,7 +65,7 @@ function logic(){
fi
fi
echo "Setting Host back to default Prompt Profile"
/usr/libexec/prompt-create-profile Host default
/usr/libexec/prompt-create-profile.sh Host default
else
echo "Not Changing"
fi
Expand All @@ -78,4 +78,4 @@ function main(){
get_status
}

main
main
Loading