Skip to content
Snippets Groups Projects

Removed copying of directories to container in Dockerfile.

Merged Jan Frenzel requested to merge issue-204 into preview
4 files
+ 5
19
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -47,12 +47,12 @@ branch="origin/${CI_MERGE_REQUEST_TARGET_BRANCH_NAME:-preview}"
@@ -47,12 +47,12 @@ branch="origin/${CI_MERGE_REQUEST_TARGET_BRANCH_NAME:-preview}"
if [ $all_files = true ]; then
if [ $all_files = true ]; then
echo "Search in all bash files."
echo "Search in all bash files."
files=$(git ls-tree --full-tree -r --name-only HEAD $basedir/docs/ | grep .sh)
files=`git ls-tree --full-tree -r --name-only HEAD $basedir/docs/ | grep .sh || true`
elif [[ ! -z $file ]]; then
elif [[ ! -z $file ]]; then
files=$file
files=$file
else
else
echo "Search in git-changed files."
echo "Search in git-changed files."
files=`git diff --name-only "$(git merge-base HEAD "$branch")" | grep .sh`
files=`git diff --name-only "$(git merge-base HEAD "$branch")" | grep .sh || true`
fi
fi
Loading