Project

General

Profile

« Previous | Next » 

Revision 56b89d31

Added by ono-max (Naoto Ono) 3 months ago

Launchable: Fix CI scripts by adding backslashes (#12974)

The following command doesn't work correctly since a backslash doesn't exist after exec. This PR fixes it.

if [ -n "${LAUNCHABLE_ORGANIZATION}" ]; then
  exec
  > >(tee launchable_stdout.log) \
  2> >(tee launchable_stderr.log)
fi