Skip to content

Commit

Permalink
Part 4
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Neff <andy@visionsystemsinc.com>
  • Loading branch information
andyneff committed Sep 14, 2023
1 parent dfab7f0 commit 33aee0e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion linux/just_files/docker_functions.bsh
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ function Just-docker-compose()
function docker_service_running()
{
"${DOCKER}" inspect -f '{{.State.Status}}' \
$("${DOCKER_COMPOSE[@]}" ps -q ${@+"${@}"}) 2>/dev/null # noquotes
$("${DOCKER_COMPOSE[@]}" ps -qa ${@+"${@}"}) 2>/dev/null # noquotes
}

#**
Expand Down
9 changes: 0 additions & 9 deletions tests/int/test-git_mirror.bsh
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,6 @@ git -c lfs.customtransfer.lfs-folder.path="'"${TRASHDIR}/lfs-folderstore-${os}/l
mkdir subdir
touch readme archive.tgz subdir/archive.tgz subdir/readme1
popd &> /dev/null

mkdir -p "${TESTDIR}/default_branch"
pushd "${TESTDIR}/default_branch" &> /dev/null
git init . &> /dev/null
touch file
git add file &> /dev/null
git commit -m "Initial commit" &> /dev/null
export GIT_DEFAULT_BRANCH="$(git rev-parse --abbrev-ref HEAD)"
popd &> /dev/null
}

begin_test "Part 1 - Setup test repo"
Expand Down

0 comments on commit 33aee0e

Please sign in to comment.