You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Prints then runs the command based on: https://stackoverflow.com/questions/31656645/how-do-i-echo-directly-on-standard-output-inside-a-shell-function
runthis(){
echo "$@"
## Run the command and redirect its error output
"$@" >&2
}
# This script is used to set the default toolchain for the current directory and run cargo clippy and cargo fmt.