Skip to content

Commit

Permalink
Fix dsda-updater-mac calling mktemp with a wrong flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro-Beirao committed Jan 23, 2025
1 parent a432cdd commit ef335ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion updater/dsda-updater-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

REPO="kraflab/dsda-doom"

TEMP=`mktemp --directory`
TEMP=`mktemp -d`
DEST=$1

TAG=$(curl -s https://api.github.com/repos/$REPO/releases/latest | sed -Ene '/^ *"tag_name": *"(v.+)",$/s//\1/p')
Expand Down

0 comments on commit ef335ab

Please sign in to comment.