Skip to content

Commit 58a54e2

Browse files
committed
Quick Save
1 parent 8f71f5b commit 58a54e2

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
PROJECT = fdx
55

6-
GIT_ORG_OR_PERSON = rsdoiel
6+
GIT_GROUP = rsdoiel
77

88
RELEASE_DATE=$(shell date +'%Y-%m-%d')
99

@@ -84,7 +84,7 @@ about.md: .FORCE
8484
@if [ -f _codemeta.json ]; then rm _codemeta.json; fi
8585

8686
installer.sh: .FORCE
87-
@echo '' | pandoc --metadata title="Installer" --metadata-file codemeta.json --template codemeta-installer.tmpl >installer.sh
87+
@echo '' | pandoc --metadata title="Installer" --metadata git_org_or_person="$(GIT_GROUP)" --metadata-file codemeta.json --template codemeta-installer.tmpl >installer.sh
8888
@chmod 775 installer.sh
8989
@git add -f installer.sh
9090

codemeta-installer.tmpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
#
66
PACKAGE="$name$"
77
VERSION="$version$"
8-
GIT_ORG_OR_PERSON="$git_org_or_person$"
9-
RELEASE="https://github.com/$$GIT_ORG_OR_PERSON/$$PACKAGE/releases/tag/v$$VERSION"
8+
GIT_GROUP="$git_org_or_person$"
9+
RELEASE="https://github.com/$$GIT_GROUP/$$PACKAGE/releases/tag/v$$VERSION"
1010

1111
#
1212
# Get the name of this script.
@@ -32,7 +32,7 @@ ZIPFILE="$$PACKAGE-v$$VERSION-$$OS_NAME-$$MACHINE.zip"
3232
#
3333
# Check to see if this zip file has been downloaded.
3434
#
35-
DOWNLOAD_URL="https://github.com/$$GIT_ORG_OR_PERSON/$$PACKAGE/releases/download/v$$VERSION/$$ZIPFILE"
35+
DOWNLOAD_URL="https://github.com/$$GIT_GROUP/$$PACKAGE/releases/download/v$$VERSION/$$ZIPFILE"
3636
if ! curl -L -o "$$HOME/Downloads/$$ZIPFILE" "$$DOWNLOAD_URL"; then
3737
echo "Curl failed to get $$DOWNLOAD_URL"
3838
fi

installer.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
#
66
PACKAGE="fdx"
77
VERSION="1.0.0"
8-
GIT_ORG_OR_PERSON=""
9-
RELEASE="https://github.com/$GIT_ORG_OR_PERSON/$PACKAGE/releases/tag/v$VERSION"
8+
GIT_GROUP="rsdoiel"
9+
RELEASE="https://github.com/$GIT_GROUP/$PACKAGE/releases/tag/v$VERSION"
1010

1111
#
1212
# Get the name of this script.
@@ -32,7 +32,7 @@ ZIPFILE="$PACKAGE-v$VERSION-$OS_NAME-$MACHINE.zip"
3232
#
3333
# Check to see if this zip file has been downloaded.
3434
#
35-
DOWNLOAD_URL="https://github.com/$GIT_ORG_OR_PERSON/$PACKAGE/releases/download/v$VERSION/$ZIPFILE"
35+
DOWNLOAD_URL="https://github.com/$GIT_GROUP/$PACKAGE/releases/download/v$VERSION/$ZIPFILE"
3636
if ! curl -L -o "$HOME/Downloads/$ZIPFILE" "$DOWNLOAD_URL"; then
3737
echo "Curl failed to get $DOWNLOAD_URL"
3838
fi

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const (
88
ReleaseDate = "2023-05-19"
99

1010
// ReleaseHash, the Git hash when version.go was generated
11-
ReleaseHash = "b35bc69"
11+
ReleaseHash = "8f71f5b"
1212

1313
LicenseText = `
1414
BSD 2-Clause License

0 commit comments

Comments
 (0)