6 lines
136 B
Bash
Executable File
6 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
echo "Installing cargo tools..."
|
|
# Use binstall for speed where possible
|
|
cargo binstall --no-confirm difftastic dust
|