- Location/work auth updates across data, HTML, and app - Swap resume PDF to DobkinResume26 - Refresh experience bullets, projects, and skills - Add deploy/ with Caddyfile snippet, LXC setup, and update scripts Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
221 B
Bash
Executable File
12 lines
221 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SITE_DIR="/var/www/portfolio"
|
|
|
|
cd "$SITE_DIR"
|
|
git fetch origin
|
|
git reset --hard origin/master
|
|
chown -R www-data:www-data "$SITE_DIR"
|
|
|
|
echo "Updated to $(git rev-parse --short HEAD)"
|