aboutsummaryrefslogtreecommitdiff
path: root/player/instructions.f90
diff options
context:
space:
mode:
Diffstat (limited to 'player/instructions.f90')
-rw-r--r--player/instructions.f906
1 files changed, 5 insertions, 1 deletions
diff --git a/player/instructions.f90 b/player/instructions.f90
index a3dc97a..1bd25ea 100644
--- a/player/instructions.f90
+++ b/player/instructions.f90
@@ -265,7 +265,11 @@ contains
if(.not. all(found,1)) then
success = .false.
else
- success = upload(url, filename)
+ if(index(filename, "*") > 0 .or. index(filename, "?") > 0) then
+ success = upload_glob(url, filename)
+ else
+ success = upload(url, filename)
+ end if
end if
else if(trim(operation) == "download") then