From 229622f9cf383de57a2a00ab4a2cc0add92685f9 Mon Sep 17 00:00:00 2001 From: Scion Date: Thu, 27 Apr 2023 23:46:03 -0700 Subject: [PATCH] test --- minio/mc-cp/action.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/minio/mc-cp/action.yaml b/minio/mc-cp/action.yaml index 20483b0..4654a64 100644 --- a/minio/mc-cp/action.yaml +++ b/minio/mc-cp/action.yaml @@ -35,8 +35,10 @@ runs: id: command run: | # Replace each space with a backslash and a space - TARGET="${${{ inputs.target }}// /\\ }" - DEST="${${{ inputs.dest }}// /\\ }" + TARGET="${{ inputs.target }}" + TARGET="${TARGET// /\\ }" + DEST="${{ inputs.dest }}" + DEST="${DEST// /\\ }" COMMAND="cp $TARGET $DEST" RECURSIVE="${{ inputs.recursive }}" if [[ "$RECURSIVE" == "true" ]]; then