Closed defnax closed 11 months ago
This dosn't work winth MSYS2 and maybe with linux too.
$(readlink -f $(dirname $0)) has no trailing slash
The result is now "
but on macos compile it gets issue to buld webui, i need to edit manually the build.sh. for macos there can be used if def or something? the cmake compile uses the build.sh and then i get the first error there with the path
Can you check the result of $(readlink -f $(dirname $0))
. On MSYS2 and linux its the current directory.
Change the script like this
#!/bin/bash
# create webfiles from sources at compile time (works without npm/node.js)
echo "### Starting WebUI build ###"
echo "---"
echo $(readlink -f $(dirname $0))
echo "---"
exit 1
src=$(readlink -f $(dirname $0))../../webui-src
Can you check the result of
$(readlink -f $(dirname $0))
. On MSYS2 and linux its the current directory. Change the script like this#!/bin/bash # create webfiles from sources at compile time (works without npm/node.js) echo "### Starting WebUI build ###" echo "---" echo $(readlink -f $(dirname $0)) echo "---" exit 1 src=$(readlink -f $(dirname $0))../../webui-src
thx i will test tonight
i get this
The readlink -f
doesn't work on your macOS version. On stackoverflow I read, that it is supported on macOS 12.3.
The
readlink -f
doesn't work on your macOS version. On stackoverflow I read, that it is supported on macOS 12.3. ah ok,.i has macos 10.13 and 10.15 (VM) theni i can live with it, now most people have newer macos versions
@thunder2 on macos go dir up with
/../../webui-src
does not workon linux and macos using go up with
../
https://askubuntu.com/questions/703698/how-do-i-navigate-up-one-directory-from-the-terminal https://smallbusiness.chron.com/previous-directory-mac-terminal-49989.html