1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-28 21:19:10 +00:00

Don't bother cleaning up temp dir on appimage build.

This commit is contained in:
Brenden Matthews 2019-02-22 20:25:07 -05:00
parent 4ae019386b
commit 96cdd3b5d5
No known key found for this signature in database
GPG Key ID: 1D7EDBF64E428281

View File

@ -13,14 +13,6 @@ fi
BUILD_DIR=$(mktemp -d -p "$TEMP_BASE" AppImageLauncher-build-XXXXXX)
# make sure to clean up build dir, even if errors occur
cleanup () {
if [ -d "$BUILD_DIR" ]; then
rm -rf "$BUILD_DIR"
fi
}
trap cleanup EXIT
# store repo root as variable
REPO_ROOT=$(readlink -f $(dirname $(dirname $0)))
OLD_CWD=$(readlink -f .)
@ -55,3 +47,5 @@ chmod +x appimagetool-x86_64.AppImage
./appimagetool-x86_64.AppImage conky*.AppImage --sign
mv conky*.AppImage "$OLD_CWD"
popd