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

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Hsu <kennethhsu@gmail.com>2021-03-01 19:34:51 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2021-03-01 19:59:58 +0300
commitb765841dca6e371354d4c758d0d325a06ed085a3 (patch)
tree97e75296dafc30bc16a41eafaa66a61027a1cbcd /.github
parenta9920e7be316b0295b4fff19c91dee7a0e3b32ff (diff)
Add missing semicolons.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index f911eab5e..2fa6ecc24 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -50,7 +50,7 @@ jobs:
cp Duplicati/Library/Snapshots/bin/Release/AlphaVSS.*.dll "${{ env.build_directory }}"/alphavss
# Copy some support libraries (e.g., for Azure) that are not picked up by the build.
- for BACKEND in Duplicati/Library/Backend/*; do if [ -d "${BACKEND}/bin/Release/" ]; then cp "${BACKEND}/bin/Release/"*.dll "${{ env.build_directory }}" fi done
+ for BACKEND in Duplicati/Library/Backend/*; do if [ -d "${BACKEND}/bin/Release/" ]; then cp "${BACKEND}/bin/Release/"*.dll "${{ env.build_directory }}"; fi; done
- name: Upload Build Artifacts
uses: actions/upload-artifact@v2