Skip to content

Bash Shorthands and Interrupts

Compare
Choose a tag to compare
@vknabel vknabel released this 21 Jun 20:53
· 40 commits to master since this release

0.2.1

  • Bumped internal dependencies
  • Correctly passes interrupts
  • Shorthand arrow syntax will be migrated to vknabel/BashArrow commands

Upcoming Breaking Change

Currently when passing a named string as a script, it will be expanded as arrow: your/Arrow.
The new behavior will run the provided string as a command line script as arrow: BashArrow and command: your script.
Until the next breaking update, repo names will still work as previously.
All strings containing exactly one /, no space and which do not start with a ., will still be treated as arrow.

scripts:
  # Deprecated shorthand
  example: "vknabel/BeakArrow" # this would run the arrow
  # New behavior
  format: "swiftformat ." # this would run a `vknabel/BashArrow` command