Skip to content

Commit efa3678

Browse files
authored
Fixed invalid redirection
1 parent edb9e80 commit efa3678

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/core.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ php_band_check_for_source() {
140140
log_info "Attempting to download from $host"
141141
$WGET_BIN -P "$PHP_BAND_ARCH_DIR" -O "$srcfile" "$host"
142142
if [ -f "$srcfile" ]; then
143-
$TAR_BIN -tf "$srcfile" 2>&1 > /dev/null
143+
$TAR_BIN -tf "$srcfile" > /dev/null 2>&1
144144
if [ $? -ne 0 ]; then
145145
rm "$srcfile"
146146
fi

0 commit comments

Comments
 (0)