Skip to content

Commit

Permalink
fix version colon
Browse files Browse the repository at this point in the history
  • Loading branch information
NishiOwO committed Feb 28, 2025
1 parent 3741a3e commit 4906c9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ install: all
echo " -rm -f * ../HighballPathnames.pp" >> $@

get-version:
@echo `grep '(\* MAJOR \*)' src/HighballVersion.pp | sed 's/.*Major : //g' | sed 's/;.*//g'`.`grep '(\* MINOR \*)' src/HighballVersion.pp | sed 's/.*Minor : //g' | sed 's/;.*//g'`.`grep '(\* PATCH \*)' src/HighballVersion.pp | sed 's/.*Patch : //g' | sed 's/;.*//g'` | tr -d '\\r\\n'
@echo `grep '(\* MAJOR \*)' src/HighballVersion.pp | sed 's/.*Major: //g' | sed 's/;.*//g'`.`grep '(\* MINOR \*)' src/HighballVersion.pp | sed 's/.*Minor: //g' | sed 's/;.*//g'`.`grep '(\* PATCH \*)' src/HighballVersion.pp | sed 's/.*Patch: //g' | sed 's/;.*//g'` | tr -d '\\r\\n'

clean: ./build/Makefile
$(MAKE) -C ./build clean
6 changes: 3 additions & 3 deletions src/HighballVersion.pp
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ THighballVersion = record
const
HighballVersionRaw: THighballVersion = (
(* DO NOT REMOVE COMMENTS!! - THEY ARE USED INTERNALLY *)
Major : 0; (* MAJOR *)
Minor : 0; (* MINOR *)
Patch : 0; (* PATCH *)
Major: 0; (* MAJOR *)
Minor: 0; (* MINOR *)
Patch: 0; (* PATCH *)
);

function HighballGetVersion(): String;
Expand Down

0 comments on commit 4906c9b

Please sign in to comment.