mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
- yamllint - shfmt config - fix Go bin path - fix git credentials config - add nvm default packages - updated Brewfile
13 lines
177 B
Bash
Executable File
13 lines
177 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# About
|
|
# -----
|
|
# Repeat the command until it fails - always run at least once.
|
|
|
|
"$@"
|
|
|
|
# If the status code was zero then repeat.
|
|
while [ $? -eq 0 ]; do
|
|
"$@"
|
|
done
|