From d363362a6c415a87c736b4bf949b307d6aa1ae01 Mon Sep 17 00:00:00 2001 From: RyoWakabayashi Date: Mon, 4 Sep 2023 08:54:07 +0900 Subject: [PATCH] fix: Fix cp option --- super-linter.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/super-linter.sh b/super-linter.sh index d40a03a..b41411f 100755 --- a/super-linter.sh +++ b/super-linter.sh @@ -47,7 +47,7 @@ copy_target_files() { for file in ${target_files}; do mkdir -p "${WORKDIR}/$(dirname "${file}")" - cp -r "${file}" "${WORKDIR}/${file}" + cp -R "${file}" "${WORKDIR}/${file}" done cp .editorconfig "${WORKDIR}/.editorconfig"