Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[cli] Fix the aliases to use for the che cli image (for now alias was using the same name) #4436

Merged
merged 1 commit into from
Mar 15, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dockerfiles/cli/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html

# Define space separated list of aliases for the docker image
IMAGE_ALIASES="eclipse/che-cli"

base_dir=$(cd "$(dirname "$0")"; pwd)
. "${base_dir}"/../build.include

init --name:cli "$@"

# Define space separated list of aliases for the docker image
IMAGE_ALIASES="${ORGANIZATION}/${PREFIX}"

if [[ ! -f "${base_dir}/version/$TAG/images" ]]; then
mkdir -p ${base_dir}/version/$TAG/
fi
Expand Down