Skip to content

Commit

Permalink
Update Makefile: '=' instead of '=='
Browse files Browse the repository at this point in the history
  • Loading branch information
schuur authored Nov 14, 2024
1 parent d309682 commit 27b3833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ build/%.html: spec/%.bs
sed 's/<title>\(.*\)<\/title>/<title>\1 (Version $(version))<\/title>/g' [email protected] > $@; \
mv -f $@ [email protected]; \
sed 's/\(<h1 .*id="title">.*\)\(<\/h1>\)/\1 (Version $(version))\2/g' [email protected] > $@; \
elif [ "$(status)" = "Draft" ] || [ "$(status)" == "Consultation" ]; then \
elif [ "$(status)" = "Draft" ] || [ "$(status)" = "Consultation" ]; then \
echo "No release: add version-date to title"; \
mv -f $@ [email protected]; \
sed 's/<title>\(.*\)<\/title>/<title>\1 (Version $(version)-$(date))<\/title>/g' [email protected] > $@; \
Expand Down

0 comments on commit 27b3833

Please sign in to comment.