From 0594e2a2f92985f984cc5211955f20d3e3382696 Mon Sep 17 00:00:00 2001 From: Bradley Bickford Date: Wed, 8 Jan 2025 21:13:31 -0500 Subject: [PATCH] Adjustments to find calls to see if that's causing the ampersand weirdness --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5dc8f6f..7eff271 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,9 +15,9 @@ RUN curl -fsSL "${XRC_DL_URL}" -o /tmp/xrc.zip \ && mkdir /home/xrc/xrc \ && unzip /tmp/xrc.zip -d /home/xrc/xrc \ && rm -rf /tmp/xrc.zip \ - && find /home/xrc -exec chown xrc:xrc {} \\; \ - && find /home/xrc -type d -exec chmod 750 {} \\; \ - && find /home/xrc -type f -exec chmod 640 {} \\; \ + && find /home/xrc -exec chown xrc:xrc {} \; \ + && find /home/xrc -type d -exec chmod 750 {} \; \ + && find /home/xrc -type f -exec chmod 640 {} \; \ && chmod 750 "/home/xrc/xrc/xRC Simulator.x86_64" \ && mv "/home/xrc/xrc/xRC Simulator.x86_64" "/home/xrc/xrc/xrc"