From 336055634ab654b26ee708588a07a032d5e6a0f7 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Fri, 14 Jun 2024 03:29:55 +0300 Subject: [PATCH] move fix_dylibs.sh to /dev --- .github/workflows/macos.yml | 4 ++-- fix_dylibs.sh => dev/fix_dylibs.sh | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename fix_dylibs.sh => dev/fix_dylibs.sh (100%) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index dd7152ab..cec23dec 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -31,10 +31,10 @@ jobs: run: cmake --build build -t install - name: Make fix_dylibs.sh executable - run: chmod +x fix_dylibs.sh + run: chmod +x dev/fix_dylibs.sh - name: Fix dylibs - run: ./fix_dylibs.sh VoxelEngine Release build + run: ./dev/fix_dylibs.sh VoxelEngine Release build - name: Create DMG run: | diff --git a/fix_dylibs.sh b/dev/fix_dylibs.sh similarity index 100% rename from fix_dylibs.sh rename to dev/fix_dylibs.sh