lbmk: use pwd util, not PWD environmental variable

PWD could be anything, if the user manually exported
it before running lbmk.

always run pwd instead, to get the real string.

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2025-04-11 17:52:18 +01:00
parent f98b9b0110
commit 0764c969a2
5 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -7,4 +7,4 @@ serx="$sersrc/build/pico_serprog.uf2"
picosdk="src/pico-sdk"
serdir="$picosdk/src/boards/include/boards"
premake="mkserprog pico"
picotool="$PWD/src/picotool/xbmkbin"
picotool="`pwd`/src/picotool/xbmkbin"