From 12beac4d7cc81176cf779023efd231a54eda92c5 Mon Sep 17 00:00:00 2001 From: fabmax Date: Sat, 2 Nov 2024 16:37:55 +0100 Subject: [PATCH] fixed paths --- make-debug.sh | 2 +- make-profile.sh | 2 +- make.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/make-debug.sh b/make-debug.sh index d2cc95b..031292c 100755 --- a/make-debug.sh +++ b/make-debug.sh @@ -9,5 +9,5 @@ cp sdk_source_bin/physx-js-webidl.js ../../../../dist-debug/ cp sdk_source_bin/physx-js-webidl.wasm ../../../../dist-debug/ if [ -d "/src/types" ]; then - cp /src/types/physx-js-webidl.d.ts ../dist-debug/ + cp /src/types/physx-js-webidl.d.ts /src/dist-debug/ fi \ No newline at end of file diff --git a/make-profile.sh b/make-profile.sh index bcc978a..7e2928c 100755 --- a/make-profile.sh +++ b/make-profile.sh @@ -9,5 +9,5 @@ cp sdk_source_bin/physx-js-webidl.js ../../../../dist-profile/ cp sdk_source_bin/physx-js-webidl.wasm ../../../../dist-profile/ if [ -d "/src/types" ]; then - cp /src/types/physx-js-webidl.d.ts ../dist-profile/ + cp /src/types/physx-js-webidl.d.ts /src/dist-profile/ fi \ No newline at end of file diff --git a/make.sh b/make.sh index a4b313a..cd8bf14 100755 --- a/make.sh +++ b/make.sh @@ -8,5 +8,5 @@ cp sdk_source_bin/physx-js-webidl.js ../../../../dist/ cp sdk_source_bin/physx-js-webidl.wasm ../../../../dist/ if [ -d "/src/types" ]; then - cp /src/types/physx-js-webidl.d.ts ../dist/ + cp /src/types/physx-js-webidl.d.ts /src/dist/ fi