Fix end-to-end test shell scripts

This commit is contained in:
Dan Davison 2020-12-03 11:39:37 -05:00
parent 0ecbe6e70a
commit ed39e4c813
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash
# if first arg provided, use it, otherwise default to release
DELTA_BIN=${1:=./target/release/delta}
DELTA_BIN=${1:-./target/release/delta}
DELTA="$DELTA_BIN --no-gitconfig"
foreground_color=red

View File

@ -1,7 +1,7 @@
#!/bin/bash
# if first arg provided, use it, otherwise default to release
DELTA_BIN=${1:=./target/release/delta}
DELTA_BIN=${1:-./target/release/delta}
DELTA="$DELTA_BIN --no-gitconfig --raw --max-line-length 0"
ANSIFILTER="./etc/bin/ansifilter"