summaryrefslogtreecommitdiffstats
path: root/tools/encap-util-expand.sh
blob: 2bb3f7f623a4b60343de479931d1bccbf6e39013 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
# $Id$

# 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