From 43464bb550e1c80f483b32157efb7ccfd5e75257 Mon Sep 17 00:00:00 2001 From: Kieron Morris Date: Sun, 9 Mar 2025 18:08:28 +0000 Subject: [PATCH] Still not working Testing whether mount paths are the problem --- .drone.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 822eff33..326a0459 100644 --- a/.drone.yml +++ b/.drone.yml @@ -17,9 +17,11 @@ steps: - name: compile image: t3hn3rd/asuro-build:latest + volumes: + - name: /code + path: /drone/src depends_on: - build-image commands: - - cp -r /drone/src/* /code/ - - chmod +x /code/*.sh - - /compile.sh \ No newline at end of file + - find . -type f -print0 | xargs -0 dos2unix + - chmod +x /code/*.sh \ No newline at end of file