Skip to content

Commit 51770ee

Browse files
authored
Update s3-functions
Was getting a strange error due to these line: ``` [mike@localhost failmode .bash-my-aws (master)]$ bma bucket-objects bash-my-bucket /home/m/.bash-my-aws/lib/s3-functions: line 59: : command not found /home/m/.bash-my-aws/lib/s3-functions: line 66: : command not found ```
1 parent 1c200c2 commit 51770ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/s3-functions

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,17 @@ bucket-acls() {
5656
}
5757

5858
bucket-objects() {
59-
59+
6060
# List of S3 Bucket Objects.
6161
#
6262
# $ bucket-objects example-bucket
6363
# object-key last-modified storage-class owner-display-name etag size
6464
# another-object-key last-modified storage-class owner-display-name etag size
6565
#
66-
66+
6767
local buckets=$(skim-stdin "$@")
6868
[[ -z "$buckets" ]] && __bma_usage "bucket [bucket]" && return 1
69-
69+
7070
local bucket
7171
for bucket in $buckets; do
7272
aws s3api list-objects \

0 commit comments

Comments
 (0)