File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 158
158
### 0.9.3 - 2022-05-24
159
159
160
160
* Fix issue with ` S3Volume.walk ` return value (\# 95)
161
+
162
+
163
+ ### 0.9.4 - 2022-05-25
164
+
165
+ * Make ` path ` argument for ` copy_files ` less restrictive (\# 96)
Original file line number Diff line number Diff line change 7
7
# terms of the MIT License; see LICENSE file for more details.
8
8
9
9
"""Information about the current version of the flowServ package."""
10
- __version__ = '0.9.3 '
10
+ __version__ = '0.9.4 '
Original file line number Diff line number Diff line change @@ -314,7 +314,7 @@ def copy_files(
314
314
# make sure to remove the 'path' from all keys.
315
315
for key , file in source_files :
316
316
if path :
317
- prefix = path + '/'
317
+ prefix = path + '/' if not path . endswith ( '/' ) else path
318
318
key = key [len (prefix ):]
319
319
dstpath = util .join (dst , key ) if dst else key
320
320
files .append (dstpath )
You can’t perform that action at this time.
0 commit comments