From @jimmykarily: The script https://github.com/SUSE/catapult/blob/master/modules/kubecf/build.sh doesn't seem to be doing correct things. Eg: ``` bazel build //deploy/helm/kubecf tar -xvf bazel-bin/deploy/helm/kubecf/kubecf.tgz -C "$BUILD_DIR" ``` The second command should be using what the first command built, but that needs more complicated logic. Like the logic we use here: https://github.com/cloudfoundry-incubator/kubecf/blob/master/dev/build.sh (see get_output_file function).
From @jimmykarily:
The script https://github.com/SUSE/catapult/blob/master/modules/kubecf/build.sh doesn't seem to be doing correct things. Eg:
The second command should be using what the first command built, but that needs more complicated logic. Like the logic we use here: https://github.com/cloudfoundry-incubator/kubecf/blob/master/dev/build.sh (see get_output_file function).