repo created
This commit is contained in:
commit
1ef725ef20
2483 changed files with 278273 additions and 0 deletions
21
scripts/uploadScreenshotSummary.sh
Executable file
21
scripts/uploadScreenshotSummary.sh
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
#!/bin/bash -x
|
||||
|
||||
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
|
||||
# SPDX-FileCopyrightText: 2021 Tobias Kaminsky <tobias@kaminsky.me>
|
||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
#1: LOG_USERNAME
|
||||
#2: LOG_PASSWORD
|
||||
|
||||
DAV_URL=https://nextcloud.kaminsky.me/remote.php/webdav/android-screenshot-summary/
|
||||
PUBLIC_URL=https://www.kaminsky.me/nc-dev/android-screenshot-summary
|
||||
USER=$1
|
||||
PASS=$2
|
||||
|
||||
date=$(date +%F)
|
||||
echo "Uploaded screenshot summary to $PUBLIC_URL/$date/summary.html"
|
||||
|
||||
cd app/build/screenshotSummary
|
||||
|
||||
find . -type d -exec curl > /dev/null 2>&1 -u $USER:$PASS -X MKCOL $DAV_URL/$date/$(echo {} | sed s#\./##) \;
|
||||
find . -type f -exec curl > /dev/null 2>&1 -u $USER:$PASS -X PUT $DAV_URL/$date/$(echo {} | sed s#\./##) --upload-file {} \;
|
||||
Loading…
Add table
Add a link
Reference in a new issue