diff options
author | Leah Rowe <leah@libreboot.org> | 2024-12-30 14:10:32 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-12-30 14:11:45 +0000 |
commit | 295463d281e4beeb0ad3aa9d0fe390227e0d5ddc (patch) | |
tree | f46c08883aa4b5b1b034b09d1807a2a6a4ed6808 /include/lib.sh | |
parent | 5b24e0a5a96096273b8b662edf3b2f7ff204c00c (diff) |
path.sh: Further cleanup
Remove all symlinks each time, to ensure that no
stragglers are left behind, since they are being
re-generated each time anyway.
The code for determining version numbers has now
been unified under gnu_setver()
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/lib.sh')
-rw-r--r-- | include/lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib.sh b/include/lib.sh index 07b9a8da..f0126457 100644 --- a/include/lib.sh +++ b/include/lib.sh @@ -95,7 +95,7 @@ if [ -z "${TMPDIR+x}" ]; then export TMPDIR="/tmp" export TMPDIR="$(mktemp -d -t xbmk_XXXXXXXX)" touch lock || $err "cannot create 'lock' file" - rm -Rf xbmkpath || $err "cannot create xbmkpath" + rm -Rf xbmkpath || $err "cannot remove xbmkpath" mkdir -p xbmkpath || $err "cannot create xbmkpath" export PATH="$PWD/xbmkpath:$PATH" || $err "Can't create xbmkpath" xbmk_parent="y" |