6484b9b026
rpm-distro element was trying to install bin programs into the image but it doesn't provide any. Move that logic into the yum element which provides the install-packages bin. Change-Id: Id5339fc7ffbef6327fe41f50a3e39ab30b6d0320
7 lines
108 B
Bash
Executable File
7 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
install -m 0755 -o root -g root $(dirname $0)/../bin/* /usr/local/bin
|