Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nmattia committed Feb 3, 2025
1 parent f504527 commit a265766
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ci/container/build-ic.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@ Non-Release Build, is for non-protected branches (revision is not in rc--* or ma
EOF
}

export TERM="${TERM:-xterm}"

echo_red() { echo one; tput setaf 1; echo two; echo "$1"; echo three; tput sgr0; }
echo_red() { echo one && tput -T xterm setaf 1 && echo two && echo "$1" && echo three && tput sgr0; }
echo_green() { tput setaf 2; echo "$1"; tput sgr0; }
echo_blue() { tput setaf 4; echo "$1"; tput sgr0; }

Expand Down Expand Up @@ -85,7 +84,7 @@ if "$RELEASE"; then
echo_red "Building release revision (master or rc--*)! Use '--no-release' for non-release revision!" && sleep 2
else
export IC_VERSION_RC_ONLY="0000000000000000000000000000000000000000"
echo_red "Building non-release revision!" && sleep 2
echo before && echo_red "Building non-release revision!" && echo after && sleep 2
fi

echo_green "foo"
Expand Down

0 comments on commit a265766

Please sign in to comment.