updated by /home/nico/bin/sync-all-repos

This commit is contained in:
Nico Schottelius 2020-05-21 00:35:50 +02:00
parent 76fc155189
commit 0c16b9c691
2 changed files with 14 additions and 1 deletions

1
chromium Symbolic link
View File

@ -0,0 +1 @@
/usr/bin/chromium-browser

View File

@ -5,11 +5,23 @@ host=staticweb.ungleich.ch
dir=/home/services/www/nico/www.nico.schottelius.org/www/temp
url="https://www.nico.schottelius.org/temp"
delete_after=""
[ -z "$file" ] && exit 1
if [ "$file" = "-" ]; then
file=$(mktemp)
cat > "$file"
delete_after=yes
fi
bfile="$(basename "$file")"
scp "$file" "${host}:${dir}"
ssh "$host" "chmod a+r \"$dir/$bfile\""
echo "Pre-released ${url}/${bfile}"
if [ "$delete_after" ]; then
rm -f "$file"
fi
echo "${url}/${bfile}"