We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a79b63 commit 912851eCopy full SHA for 912851e
build.sh
@@ -4,6 +4,6 @@ cd "${0%/*}"
4
rm -rf out
5
mkdir -p out
6
cp -r "decompiled-$1" out/raw
7
-# find out/raw -name "*.gml" -exec sh -c 'cp "$1" "${1%.gml}.txt"' _ {} \;
+find out/raw -name "*.gml" -exec sh -c 'cp "$1" "${1%.gml}.txt"' _ {} \;
8
cp -r static out
9
python generate.py "$1"
scripts/ExportCodeFormatted.csx
@@ -34,7 +34,7 @@ void DumpCode(UndertaleCode code)
34
{
35
if (code is not null)
36
37
- string path = Path.Combine(codeFolder, code.Name.Content + ".txt");
+ string path = Path.Combine(codeFolder, code.Name.Content + ".gml");
38
try
39
40
File.WriteAllText(path, (code != null
0 commit comments