blob: 5764bdc79eea93ddaf12a81097bfc1990360c15a (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# This gets the encaps out of a makeself .run file
for RUN in $(find . -type f | grep run$); do
DIR="$(dirname $RUN)"
$RUN --noexec --keep --target $DIR
done
exit 0
|