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

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthecalcaholic <6317548+theCalcaholic@users.noreply.github.com>2022-09-28 16:22:22 +0300
committerthecalcaholic <6317548+theCalcaholic@users.noreply.github.com>2022-09-28 17:14:01 +0300
commit1c4fefbb7af9e775a45e450e5e7378ea07f74b5f (patch)
treede25a4e74708f14f61fa9d9c53b4172f18931525
parent95411b58e14d5935a949e12d4fce894d73ea0dae (diff)
run-parts.sh: Fix syntax
Signed-off-by: thecalcaholic <6317548+theCalcaholic@users.noreply.github.com>
-rwxr-xr-xbuild/docker/debian-ncp/run-parts.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/docker/debian-ncp/run-parts.sh b/build/docker/debian-ncp/run-parts.sh
index abcde008..0bdade4b 100755
--- a/build/docker/debian-ncp/run-parts.sh
+++ b/build/docker/debian-ncp/run-parts.sh
@@ -23,7 +23,7 @@ else
while read -r bkp
do
rm -f "$BKPDIR/$bkp"
- done <"$(echo "$BKPS" | tail -n + 5)"
+ done <"$(echo "$BKPS" | tail -n +5)"
BKPDIR=/data/ncp-startup-backups/
WITH_DATA=no
COMPRESSED=yes