test
This commit is contained in:
@@ -35,8 +35,10 @@ runs:
|
|||||||
id: command
|
id: command
|
||||||
run: |
|
run: |
|
||||||
# Replace each space with a backslash and a space
|
# Replace each space with a backslash and a space
|
||||||
TARGET="${${{ inputs.target }}// /\\ }"
|
TARGET="${{ inputs.target }}"
|
||||||
DEST="${${{ inputs.dest }}// /\\ }"
|
TARGET="${TARGET// /\\ }"
|
||||||
|
DEST="${{ inputs.dest }}"
|
||||||
|
DEST="${DEST// /\\ }"
|
||||||
COMMAND="cp $TARGET $DEST"
|
COMMAND="cp $TARGET $DEST"
|
||||||
RECURSIVE="${{ inputs.recursive }}"
|
RECURSIVE="${{ inputs.recursive }}"
|
||||||
if [[ "$RECURSIVE" == "true" ]]; then
|
if [[ "$RECURSIVE" == "true" ]]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user