Revert "Convert line-endings in generated bash scripts. (#8056)" (#8091)

This reverts commit 8c89211372.
This commit is contained in:
Martin Strobel 2018-12-18 15:46:04 -08:00 коммит произвёл GitHub
Родитель 69e05b5f11
Коммит 3792cf2d9d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -57,7 +57,7 @@ RUN /bin/bash -c 'TMP_PKG_DIR=$(mktemp -d); \
all_modules=`find $TMP_PKG_DIR -name "*.whl"`; \
pip install --no-cache-dir $all_modules; \
pip install --no-cache-dir --force-reinstall --upgrade azure-nspkg azure-mgmt-nspkg;' \
&& cat /azure-cli/az.completion | dos2unix > ~/.bashrc \
&& cat /azure-cli/az.completion > ~/.bashrc \
&& runDeps="$( \
scanelf --needed --nobanner --recursive /usr/local \
| awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' \
@ -66,8 +66,7 @@ RUN /bin/bash -c 'TMP_PKG_DIR=$(mktemp -d); \
| sort -u \
)" \
&& apk add --virtual .rundeps $runDeps \
&& apk del .build-deps \
&& cat /usr/local/bin/az | dos2unix > /usr/local/bin/az
&& apk del .build-deps
WORKDIR /