Skip to content

Commit efb421c

Browse files
committed
fix: add apostrophe as valid char
1 parent 64d5763 commit efb421c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use log::*;
99
use crate::prelude::*;
1010

1111
/// https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html
12-
const VALID_FILENAME_CHARS: &str = "!-_.*()"; // plus alphanumeric
12+
const VALID_FILENAME_CHARS: &str = "!-_.*'()"; // plus alphanumeric
1313

1414
/// CLI Parser uses `clap`.
1515
///

0 commit comments

Comments
 (0)