Skip to content

Commit

Permalink
Fix broken command substitution in Fish alias
Browse files Browse the repository at this point in the history
  • Loading branch information
shajra committed Jan 18, 2024
1 parent b6fdbf7 commit 8e1ffb0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions home/target/shajra/programs/fish/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,15 @@
set --erase --global SFT_AUTH_SOCK
'';

functions = {
groq-mr-slack = {
description = "Notify team of merge request";
body = ''
echo "shajra: $(gr mr-get --format=short)" | slack '#infra-mr'
'';
};

shellAliases = {
groq-mr-slack =
''echo "shajra: $(gr mr-get --format=short)" | slack '#infra-mr'';
psql-brake-ro =
''PGPASSWORD=brakero psql --host=10.26.147.22 -U brakero brake'';
psql-brake-rw =
Expand Down

0 comments on commit 8e1ffb0

Please sign in to comment.