Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/vm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorszaimen <szaimen@e.mail.de>2020-10-31 16:49:37 +0300
committerGitHub <noreply@github.com>2020-10-31 16:49:37 +0300
commitacf242fb0968b55eb6bd753c74c23941594d69d0 (patch)
treef5f966fef0972cbec82aa42be6395b947128e4d3 /apps/clamav.sh
parent332ca48732fb3d0917f7eb58c4699175db331934 (diff)
Fix an issue with clamav (#1637)
Diffstat (limited to 'apps/clamav.sh')
-rw-r--r--apps/clamav.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/clamav.sh b/apps/clamav.sh
index 7b1f7823..befe0333 100644
--- a/apps/clamav.sh
+++ b/apps/clamav.sh
@@ -129,7 +129,7 @@ case "$choice" in
AV_PATH=""
;;
"Copy to a folder")
- ARGUMENT="--move="
+ ARGUMENT="--copy="
AV_PATH="/root/.clamav/clamav-fullscan.jail"
msg_box "We will copy the files to '$AV_PATH'"
mkdir -p "$AV_PATH"
@@ -137,7 +137,7 @@ case "$choice" in
chmod -R 600 "$AV_PATH"
;;
"Move to a folder")
- ARGUMENT="--copy="
+ ARGUMENT="--move="
AV_PATH="/root/.clamav/clamav-fullscan.jail"
msg_box "We will move the files to '$AV_PATH'"
mkdir -p "$AV_PATH"