Skip to content

Commit

Permalink
modified: rclone/action.yml
Browse files Browse the repository at this point in the history
	modified:   rclone/entrypoint.sh
  • Loading branch information
ss-o committed Sep 28, 2022
1 parent 00128a3 commit 6443afd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions actions/rclone/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ inputs:
description: "Set custom location for rclone configuration file"
required: false
config:
description: "Configuration for rclone"
description: "Configuration to set up for rclone"
required: true
debug:
description: "Verbose output and logging"
description: "Verbose debugging and logging or carry on, but do quit on errors"
required: false
default: false
args:
Expand Down
3 changes: 1 addition & 2 deletions actions/rclone/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
#!/usr/bin/env bash

# Run rclone for files and directories from different cloud storage providers.

if [[ $DEBUG == "false" ]]; then
# Carry on, but do quit on errors
set -e
else
elif [[ $DEBUG == "true" ]]; then
# Verbose debugging
set -exuo pipefail xtrace
export LOG_LEVEL=debug
Expand Down

0 comments on commit 6443afd

Please sign in to comment.