Skip to content

Commit

Permalink
♻️ - whitespaces in script
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrolich committed Apr 10, 2024
1 parent e371cfd commit 08ebaaa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ overwrite() { echo -e "\r\033[1A\033[0K$@"; }
success() { echo -e "- ✅ \033[32m$1\033[0m"; }
error() { echo -e "- 🛑 \033[31m$1\033[0m"; }
bold() { echo -e "\033[1m$1\033[0m"; }
rewatch() { RUST_BACKTRACE=1 ../target/release/rewatch --no-timing=true $1; }
rewatch() { RUST_BACKTRACE=1 ../target/release/rewatch --no-timing=true $1; }

replace() {
if [[ $OSTYPE == 'darwin'* ]];
replace() {
if [[ $OSTYPE == 'darwin'* ]];
then
sed -i '' $1 $2;
else
else
sed -i $1 $2;
fi
}
}

0 comments on commit 08ebaaa

Please sign in to comment.