Skip to content

Commit b4670fa

Browse files
FitzerIRLMichael Fiess
authored and
Michael Fiess
committed
Prevent error if move of [Makefile.build] already moved (pxscene#1651)
1 parent b1d0c2a commit b4670fa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

examples/pxScene2d/external/build.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,12 @@ if [ ! -e ./uWebSockets/libuWS.dylib ] ||
148148
then
149149

150150
cd uWebSockets
151-
mv Makefile.build Makefile
151+
152+
if [ -e Makefile.build ]
153+
then
154+
mv Makefile.build Makefile
155+
fi
156+
152157
make
153158
cd ..
154159

0 commit comments

Comments
 (0)