test
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user