Skip to content

Commit e4c72c2

Browse files
committed
fix: proper naming
1 parent bb679c0 commit e4c72c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ RUN ln -s $LIBS_PREFIX/bin/llvm-strip $LIBS_PREFIX/bin/strip
4444
RUN ln -s $LIBS_PREFIX/bin/ld.lld $LIBS_PREFIX/bin/ld
4545

4646
# Create an archive of the installed binaries
47-
RUN tar -vcJf /llvm-$LLVM_VERSION-ubuntu-bionic.tar.xz /opt/libs/
47+
RUN tar --xform s:'^./':: -C /opt/libs/ -vcJf /llvm-$LLVM_VERSION-ubuntu-12.04-bionic.tar.xz ./

llvm/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ docker build --build-arg LLVM_VERSION=$llvm_version -t ubuntu-llvm:$llvm_version
55

66
# Spin up the image and copy the tarbal it creates
77
id=$(docker create ubuntu-llvm:$llvm_version)
8-
docker cp $id:llvm-$llvm_version-ubuntu-bionic.tar.xz llvm-$llvm_version-ubuntu-bionic.tar.xz
8+
docker cp $id:llvm-$llvm_version-ubuntu-12.04-bionic.tar.xz llvm-$llvm_version-ubuntu-12.04-bionic.tar.xz
99
docker rm -v $id

0 commit comments

Comments
 (0)