From 5f63e545be8f5958c4614a7e040e3c75c6c22624 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Fri, 22 Jan 2021 16:49:41 -0800 Subject: [PATCH] Fix "Invalid encapsulated data" error from Red --- langs/red.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/langs/red.yaml b/langs/red.yaml index d95b226..ea895be 100644 --- a/langs/red.yaml +++ b/langs/red.yaml @@ -19,8 +19,9 @@ install: setup: | shopt -s dotglob; cp -R /opt/red/skel/* ./ +# https://github.com/red/red/issues/543#issuecomment-25404212 repl: | - red + "$(which red)" input: | DELAY: 1 123 * 234 @@ -32,4 +33,4 @@ template: | print "Hello, world!" run: | - red main.red; red + "$(which red)" main.red; "$(which red)"