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): correct sed pattern to extract tag_name value

+1 -1
+1 -1
scripts/install.sh
··· 42 42 43 43 # Get latest release version 44 44 echo "Fetching latest release..." 45 - LATEST=$(curl -fsSL -H "User-Agent: pad-installer" "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":' | head -1 | sed -E 's/.*"tag_name".*"([^"]+)".*/\1/') 46 46 47 47 if [ -z "$LATEST" ]; then 48 48 echo "Error: Could not determine latest release" >&2