This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# mac-audit.sh | |
# Run with sudo. Non-destructive. Produces /tmp/mac-audit-<timestamp>.txt | |
set -euo pipefail | |
OUT="/tmp/mac-audit-$(date +%Y%m%d-%H%M%S).txt" | |
ERR="/tmp/mac-audit-errs-$(date +%Y%m%d-%H%M%S).txt" | |
echo "mac-audit run: $(date -u)" > "$OUT" | |
echo "hostname: $(hostname -s)" >> "$OUT" | |
echo "user: $(whoami)" >> "$OUT" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -euo pipefail | |
# --------------------- Config --------------------- | |
WORKDIR="$HOME/Developer/Aseprite" | |
ASEPRITE_REPO="https://github.com/aseprite/aseprite.git" | |
SKIA_REPO_API="https://api.github.com/repos/aseprite/skia/releases/latest" | |
BUILD_TYPE="RelWithDebInfo" | |
DEPLOY_TARGET="12.0" # matches Monterey | |
# -------------------------------------------------- |