Skip to content

Commit

Permalink
Fix ds alias so that osascript doesn't randomly modify .dev.scpt ever…
Browse files Browse the repository at this point in the history
…y time it runs
  • Loading branch information
ndbroadbent committed Oct 17, 2024
1 parent f5faf22 commit fb70539
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bashrc/development.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
alias ds='osascript .dev.scpt "$(pwd)" &'
alias ds='cat .dev.scpt | osascript - "$(pwd)" &'
alias dds='cd ~/code/docspring && ds'
alias sds='cd ~/code/spin && ds'
alias d='cd ~/code/docspring'
Expand Down
2 changes: 1 addition & 1 deletion fish/config.fish
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ abbr -a cx convox
abbr -a b bundle
abbr -a bu "bundle update"

alias ds='osascript .dev.scpt "$PWD"'
alias ds='cat .dev.scpt | osascript - "$PWD"'
abbr -a dds 'cd ~/code/docspring && ds'
abbr -a d "cd ~/code/docspring"
abbr -a da 'direnv allow'
Expand Down

0 comments on commit fb70539

Please sign in to comment.