From ba9f4372b2ffe349b2964fd8a524b94f53323f3b Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Sat, 6 Nov 2021 21:52:59 -0400 Subject: [PATCH] Get build.sh improvements from irrPaint3D. --- build.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index f57ff43..7acf20b 100755 --- a/build.sh +++ b/build.sh @@ -143,6 +143,8 @@ if [ -z "$BUILD_DIR" ]; then fi OUT_BIN="$BUILD_DIR/$BIN_NAME" +OUT_BIN_PATH="`realpath $OUT_BIN`" +OUT_BIN_CWD="`realpath $BUILD_DIR`" if [ "@$DEBUG" = "@true" ]; then OPTION1="-g" @@ -307,4 +309,6 @@ if [ "@$DEBUG" != "@true" ]; then fi fi echo "Done" - +echo "You can now make a shortcut to:" +echo " Exec=$OUT_BIN_PATH" +echo " Path=$OUT_BIN_CWD"