mirror of
https://github.com/darlinghq/darling.git
synced 2024-11-23 20:29:47 +00:00
0e58836f09
I didn't add setsebool -P mmap_low_allowed 1 to the install script because I didn't feel comfortable adding that
9 lines
290 B
Bash
Executable File
9 lines
290 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxv
|
|
|
|
CWD="$(cd "$(dirname "${BASH_SOURCE[0]}")"; pwd)"
|
|
if [ -e "${CWD}/SOURCES/darling.tar.gz" ]; then
|
|
rm "${CWD}/SOURCES/darling.tar.gz"
|
|
fi
|
|
tar --transform "s|^\./|darling/|" -cf "${CWD}/SOURCES/darling.tar.gz" -C "${CWD}/.." --exclude=.git --exclude SOURCES . |