From 8999eef23a4226298d09419cf2c5fae938a0c9ba Mon Sep 17 00:00:00 2001 From: Martin Kourim Date: Tue, 21 Apr 2026 18:40:51 +0200 Subject: [PATCH] fix(runner): add executable permissions to dbsync_download/bin/* after extracting tarball Add a temporary chmod step to ensure binaries in dbsync_download/bin are executable after extraction. This is a workaround until the tarball is packaged with correct permissions. --- runner/source_dbsync.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/runner/source_dbsync.sh b/runner/source_dbsync.sh index df410103a..47b94aa5d 100644 --- a/runner/source_dbsync.sh +++ b/runner/source_dbsync.sh @@ -64,6 +64,7 @@ if [ -n "${DBSYNC_TAR_URL:-}" ]; then rm -rf dbsync_download mkdir -p dbsync_download tar -C dbsync_download -xzf "$DBSYNC_TAR_FILE" || exit 1 + chmod +x dbsync_download/bin/* # TODO: Remove this line once the tarball has the correct permissions set rm -f "$DBSYNC_TAR_FILE" rm -f db-sync-node ln -s dbsync_download db-sync-node || exit 1