You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
==> default:
==> default: * Loading configurations *
==> default: tee: /dev/tty: No such device or address
==> default:
... ...
==> default: * Installing ratom *
==> default: which: no ratom in (/usr/local/sbin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/usr/local/bin)
==> default: tee: /dev/tty: No such device or address
... ...
==> default: * Installing Oracle XE *
==> default: tee: /dev/tty: No such device or address
==> default: /var/tmp/rpm-tmp.miszrM: line 257: [: 18446744073692774399: integer expression expected
==> default: /var/tmp/rpm-tmp.miszrM: line 271: [: 18446744073692774399: integer expression expected
I guess the main idea for this snippet is to use tee to redirect stderror to /dev/tty. Somehow, with vagrant build, in this command substitution sub-shell, tee can not find /dev/tty in vagrant ssh.
The text was updated successfully, but these errors were encountered:
If changing to code below, progress bar will show but line by line on terminal as well as in the log file. Not recommended. DOWNLOAD_OUTPUT=$(curl -L -O -C - ${download_path} --progress-bar 2> >(tee ${OOS_ERROR_LOG} --append 1>&2))
There is the same error that happened 3 times related to the code below through vagrant build.
errors are as below:
I guess the main idea for this snippet is to use tee to redirect stderror to /dev/tty. Somehow, with vagrant build, in this command substitution sub-shell, tee can not find /dev/tty in vagrant ssh.
The text was updated successfully, but these errors were encountered: