Skip to content

Commit

Permalink
[godot] Updates scripts to handle spaces in file paths (#2244).
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeeingram committed Apr 25, 2023
1 parent 5662c75 commit d3004bf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion spine-godot/build/build-templates-v4.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
pushd $dir > /dev/null
pushd "$dir" > /dev/null

if [ ! "$#" -eq 1 ]; then
echo "Usage: ./build-templates.sh <platform>"
Expand Down
2 changes: 1 addition & 1 deletion spine-godot/build/build-templates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
pushd $dir > /dev/null
pushd "$dir" > /dev/null

if [ ! "$#" -eq 1 ]; then
echo "Usage: ./build-templates.sh <platform>"
Expand Down
2 changes: 1 addition & 1 deletion spine-godot/build/build-v4.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
pushd $dir > /dev/null
pushd "$dir" > /dev/null

if [ ! -d ../godot ]; then
echo "No Godot clone found. Run ./setup.sh <Godot branch or tag> <dev> first."
Expand Down
2 changes: 1 addition & 1 deletion spine-godot/build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
pushd $dir > /dev/null
pushd "$dir" > /dev/null

if [ ! "$#" -eq 1 ]; then
echo "Usage: ./build.sh <target>"
Expand Down
2 changes: 1 addition & 1 deletion spine-godot/build/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
pushd $dir > /dev/null
pushd "$dir" > /dev/null

if [ ! "$#" -eq 2 ]; then
echo "Usage: ./setup.sh <Godot branch or tag> <dev:true|false>"
Expand Down

0 comments on commit d3004bf

Please sign in to comment.