Skip to content

Commit a1984df

Browse files
committed
fix(generate-dockerfiles): correct template filename in Dockerfile generation
* Updated the filename from `Dockerfile-j2` to `Dockerfile.j2` to ensure the correct template is used for generating Dockerfiles.
1 parent 2644409 commit a1984df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generate-dockerfiles.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ while read -r line; do
1616
export distro
1717
touch "dockerfiles/Dockerfile-${shortname}"
1818
echo "Generating Dockerfile-${shortname} (${gamename})"
19-
jinjanate Dockerfile-j2 >"dockerfiles/Dockerfile-${shortname}"
19+
jinjanate Dockerfile.j2 >"dockerfiles/Dockerfile-${shortname}"
2020
{ printf '{"shortname":"%s"},' "$shortname"; } >>"shortnamearray.json"
2121
done < <(tail -n +2 serverlist.csv)
2222
sed -i '$ s/.$//' "shortnamearray.json"

0 commit comments

Comments
 (0)