Skip to content

Commit 912851e

Browse files
committed
The workflow needs both txt and gml
1 parent 9a79b63 commit 912851e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ cd "${0%/*}"
44
rm -rf out
55
mkdir -p out
66
cp -r "decompiled-$1" out/raw
7-
# find out/raw -name "*.gml" -exec sh -c 'cp "$1" "${1%.gml}.txt"' _ {} \;
7+
find out/raw -name "*.gml" -exec sh -c 'cp "$1" "${1%.gml}.txt"' _ {} \;
88
cp -r static out
99
python generate.py "$1"

scripts/ExportCodeFormatted.csx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void DumpCode(UndertaleCode code)
3434
{
3535
if (code is not null)
3636
{
37-
string path = Path.Combine(codeFolder, code.Name.Content + ".txt");
37+
string path = Path.Combine(codeFolder, code.Name.Content + ".gml");
3838
try
3939
{
4040
File.WriteAllText(path, (code != null

0 commit comments

Comments
 (0)