summaryrefslogtreecommitdiffstats
path: root/misc/scripts/make_tarball.sh
diff options
context:
space:
mode:
Diffstat (limited to 'misc/scripts/make_tarball.sh')
-rwxr-xr-xmisc/scripts/make_tarball.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/misc/scripts/make_tarball.sh b/misc/scripts/make_tarball.sh
index 9e02b80..e9ab183 100755
--- a/misc/scripts/make_tarball.sh
+++ b/misc/scripts/make_tarball.sh
@@ -1,7 +1,7 @@
#!/bin/sh
if [ ! -e "version.py" ]; then
- echo "This script should be ran from the root folder of the Godot repository."
+ echo "This script should be ran from the root folder of the Redot repository."
exit 1
fi
@@ -11,7 +11,7 @@ while getopts "h?sv:g:" opt; do
echo "Usage: $0 [OPTIONS...]"
echo
echo " -s script friendly file name (godot.tar.gz)"
- echo " -v godot version for file name (e.g. 4.0-stable)"
+ echo " -v redot version for file name (e.g. 4.0-stable)"
echo " -g git treeish to archive (e.g. master)"
echo
exit 1
@@ -35,17 +35,17 @@ else
fi
if [ ! -z "$script_friendly_name" ]; then
- NAME=godot
+ NAME=redot
else
if [ ! -z "$godot_version" ]; then
- NAME=godot-$godot_version
+ NAME=redot-$godot_version
else
- NAME=godot-$HEAD
+ NAME=redot-$HEAD
fi
fi
CURDIR=$(pwd)
-TMPDIR=$(mktemp -d -t godot-XXXXXX)
+TMPDIR=$(mktemp -d -t redot-XXXXXX)
echo "Generating tarball for revision $HEAD with folder name '$NAME'."
echo