Skip to content

Commit 739c1f2

Browse files
author
Robert Melton
committed
Fix Makefile heredoc syntax for GitHub Actions
1 parent efef918 commit 739c1f2

1 file changed

Lines changed: 22 additions & 22 deletions

File tree

Makefile

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -157,28 +157,28 @@ update-brew: ## Update Homebrew cask formula in ../homebrew-ffwf
157157
echo "SHA256: $$SHA256"; \
158158
# Update Cask formula
159159
echo "Updating Cask formula..."; \
160-
cat > ../homebrew-ffwf/Casks/ffwf.rb <<EOF
161-
cask "ffwf" do
162-
version "$(VERSION)"
163-
sha256 "$$SHA256"
164-
165-
url "https://github.com/intelligrit/ffwf/releases/download/v#{version}/FFWF-#{version}.dmg"
166-
name "FFWF"
167-
desc "Fast Fuzzy Window Finder - macOS menu bar app for switching windows"
168-
homepage "https://intelligrit.com/labs/"
169-
170-
livecheck do
171-
url :url
172-
strategy :github_latest
173-
end
174-
175-
app "FFWF.app"
176-
177-
zap trash: [
178-
"~/Library/Preferences/com.robertmeta.FFWF.plist",
179-
]
180-
end
181-
EOF
160+
cat > ../homebrew-ffwf/Casks/ffwf.rb <<-EOF
161+
cask "ffwf" do
162+
version "$(VERSION)"
163+
sha256 "$$SHA256"
164+
165+
url "https://github.com/intelligrit/ffwf/releases/download/v#{version}/FFWF-#{version}.dmg"
166+
name "FFWF"
167+
desc "Fast Fuzzy Window Finder - macOS menu bar app for switching windows"
168+
homepage "https://intelligrit.com/labs/"
169+
170+
livecheck do
171+
url :url
172+
strategy :github_latest
173+
end
174+
175+
app "FFWF.app"
176+
177+
zap trash: [
178+
"~/Library/Preferences/com.robertmeta.FFWF.plist",
179+
]
180+
end
181+
EOF
182182
@# Clean up
183183
@rm -f /tmp/FFWF-$(VERSION).dmg
184184
@echo "✓ Homebrew cask updated successfully!"

0 commit comments

Comments
 (0)