CLI/TUI for drafting, repeating, and publishing daily standup updates as GitHub issues
github go cli golang management project tui daily
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(scripts): add user-agent header for github api

+2 -2
+2 -2
scripts/install.sh
··· 1 1 #!/bin/sh 2 2 # pad installer script 3 - # Usage: curl -fsSL https://raw.githubusercontent.com/prefapp/pad/main/scripts/install.sh | sh 3 + # Usage: curl -fsSL https://raw.githubusercontent.com/vieitesss/pad/main/scripts/install.sh | sh 4 4 5 5 set -e 6 6 ··· 42 42 43 43 # Get latest release version 44 44 echo "Fetching latest release..." 45 - LATEST=$(curl -fsSL "https://api.github.com/repos/$REPO/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') 45 + LATEST=$(curl -fsSL -H "User-Agent: pad-installer" "https://api.github.com/repos/$REPO/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') 46 46 47 47 if [ -z "$LATEST" ]; then 48 48 echo "Error: Could not determine latest release" >&2