summaryrefslogtreecommitdiffhomepage
path: root/projects/scripts/build-rpi.sh
diff options
context:
space:
mode:
authorgtrxAC <[email protected]>2022-02-10 21:51:46 +0200
committerGitHub <[email protected]>2022-02-10 20:51:46 +0100
commit30797d32010247257c38f7849ae8fd67193580cf (patch)
treed86f5461b41954af91b7e54859d8512f267776e2 /projects/scripts/build-rpi.sh
parent96452637d979da3a37d0af79df32a83a935d6f85 (diff)
downloadraylib-30797d32010247257c38f7849ae8fd67193580cf.tar.gz
raylib-30797d32010247257c38f7849ae8fd67193580cf.zip
Update file names in build scripts (#2339)
* JSON parser: Use array for function params (#2255) * Parser: follow C convention of type before name * Update file names in build scripts
Diffstat (limited to 'projects/scripts/build-rpi.sh')
-rwxr-xr-xprojects/scripts/build-rpi.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/projects/scripts/build-rpi.sh b/projects/scripts/build-rpi.sh
index 7b4237f2..646cf90c 100755
--- a/projects/scripts/build-rpi.sh
+++ b/projects/scripts/build-rpi.sh
@@ -24,7 +24,7 @@ set -e
while getopts ":hdusrcq" opt; do
case $opt in
h)
- echo "Usage: ./linux-build.sh [-hdusrcqq]"
+ echo "Usage: ./build-rpi.sh [-hdusrcqq]"
echo " -h Show this information"
echo " -d Faster builds that have debug symbols, and enable warnings"
echo " -u Run upx* on the executable after compilation (before -r)"
@@ -39,10 +39,10 @@ while getopts ":hdusrcq" opt; do
echo " requires that you have upx installed and on your path, of course."
echo ""
echo "Examples:"
- echo " Build a release build: ./linux-build.sh"
- echo " Build a release build, full recompile: ./linux-build.sh -c"
- echo " Build a debug build and run: ./linux-build.sh -d -r"
- echo " Build in debug, run, don't print at all: ./linux-build.sh -drqq"
+ echo " Build a release build: ./build-rpi.sh"
+ echo " Build a release build, full recompile: ./build-rpi.sh -c"
+ echo " Build a debug build and run: ./build-rpi.sh -d -r"
+ echo " Build in debug, run, don't print at all: ./build-rpi.sh -drqq"
exit 0
;;
d)