Lines Matching full:echo
9 @echo "Delete Page Guard Plugin - Developer Tools"
10 @echo "=========================================="
11 @echo ""
12 @echo "Development targets:"
13 @echo " test - Run the test suite"
14 @echo " check - Check PHP syntax of all files"
15 @echo " clean - Clean temporary files"
16 @echo ""
17 @echo "Release targets:"
18 @echo " version [VERSION=x.y.z] - Update version in all files"
19 @echo " dist - Create distribution ZIP file"
20 @echo " release [VERSION=x.y.z] - Complete release workflow"
21 @echo ""
22 @echo "Utility targets:"
23 @echo " status - Show current version and git status"
24 @echo " help - Show this help message"
28 @echo "Running test suite..."
33 @echo "Checking PHP syntax..."
35 @echo "Syntax check complete."
39 @echo "Cleaning temporary files and build artifacts..."
43 @echo "Clean complete."
48 @echo "Error: VERSION parameter required"
49 @echo "Usage: make version VERSION=1.2.3"
52 @echo "Updating version to $(VERSION)..."
54 @echo "Version update complete."
58 @echo "Creating distribution package..."
64 @echo "Error: VERSION parameter required"
65 @echo "Usage: make release VERSION=1.2.3"
68 @echo "Starting release workflow for version $(VERSION)..."
70 @echo "Please update CHANGELOG.md with release notes, then run:"
71 @echo " git add -A"
72 @echo " git commit -m 'Release version $(VERSION)'"
73 @echo " git tag v$(VERSION)"
74 @echo " make dist"
75 @echo " git push origin main --tags"
80 @echo "Git status:"
81 @git status --short || echo "Not a git repository"