68bb43535e
openSUSE Tumbleweed is dropping python2-* packages so we need to stop intalling them. We can also stop installing those for Leap 15. which avoids a pip uninstall issue (as python2-six was still built with distribute). Change-Id: Ie93c8addb26aab3d0154c4b5b52423799abede91
12 lines
222 B
Bash
Executable File
12 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
for f in $(find $(dirname $0)/../bin/ -type f -executable -print); do
|
|
install -m 0755 -o root -g root $f /usr/local/bin
|
|
done
|