aboutsummaryrefslogtreecommitdiff
path: root/misc/scripts
diff options
context:
space:
mode:
authorRémi Verschelde2017-05-02 11:32:48 +0200
committerGitHub2017-05-02 11:32:48 +0200
commitacaa01dfa76fcf538c4aba993e9ac0ae1dde9b5d (patch)
tree9c51789ed5f03364c8714bbcbb0d5be35ffbfeb9 /misc/scripts
parent8e64b27585c416095fbfae0f8c7aca618519e43b (diff)
parent7ce8342ac5c0e0a302559d3ef561ffd9dc74ff2c (diff)
downloadgodot-acaa01dfa76fcf538c4aba993e9ac0ae1dde9b5d.tar.gz
godot-acaa01dfa76fcf538c4aba993e9ac0ae1dde9b5d.tar.zst
godot-acaa01dfa76fcf538c4aba993e9ac0ae1dde9b5d.zip
Merge pull request #8610 from akien-mga/project-file-extension
Rename project file to "project.godot"
Diffstat (limited to 'misc/scripts')
-rw-r--r--misc/scripts/sort-demos.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/scripts/sort-demos.sh b/misc/scripts/sort-demos.sh
index 2121d78c1..5e01b86b4 100644
--- a/misc/scripts/sort-demos.sh
+++ b/misc/scripts/sort-demos.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# When scanning for demos, the project manager sorts them based on their
# timestamp, i.e. last modification date. This can make for a pretty
-# messy output, so this script 'touches' each godot.cfg file in reverse
+# messy output, so this script 'touches' each project.godot file in reverse
# alphabetical order to ensure a nice listing.
#
# It's good practice to run it once before packaging demos on the build
@@ -17,7 +17,7 @@ if [ -e demos.list ]; then
fi
for dir in 2d 3d gui misc viewport; do
- find "demos/$dir" -name "godot.cfg" |sort >> demos.list
+ find "demos/$dir" -name "project.godot" |sort >> demos.list
done
cat demos.list |sort -r > demos_r.list