summaryrefslogtreecommitdiffstats
path: root/misc/scripts/make_tarball.sh
diff options
context:
space:
mode:
authorGeorge L. Albany <Megacake1234@gmail.com>2024-10-31 19:26:11 +0000
committerGitHub <noreply@github.com>2024-10-31 19:26:11 +0000
commitbebc98d4eab0ca9164282d9c0770914025751d24 (patch)
tree01f0912301ba267504666e4d9e21cffe41b51415 /misc/scripts/make_tarball.sh
parent259c757ccea4c8e223713019ca5ab95788fcf92e (diff)
parent4667b71811d16169440c320dc490bbe074e4d01b (diff)
downloadredot-cpp-bebc98d4eab0ca9164282d9c0770914025751d24.tar.gz
Merge pull request #1 from Redot-Engine/rebrand
Rebrand godot-cpp to redot-cpp
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