Skip to content

Commit

Permalink
Fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
WardBrian committed Aug 13, 2024
1 parent f1ccccc commit da3659e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ build: [
"dune"
"build"
"-p"
name
"yojson-five"
"-j"
jobs
"-x"
Expand Down
2 changes: 1 addition & 1 deletion packages/yojson-windows/yojson-windows.2.2.2/opam
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ build: [
"dune"
"build"
"-p"
name
"yojson"
"-j"
jobs
"-x"
Expand Down
8 changes: 4 additions & 4 deletions tests/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ printf "Building ${PACKAGE} using ${IMAGE}.. "

DOCKER_CMD="docker build -f ${TEST_PWD}/Dockerfile.test --no-cache \
--build-arg \"PKG_CONFIG_PATH=${PKG_CONFIG_PATH}\" \
--build-arg \"IMAGE=${IMAGE}\" --build-arg \"OPAM_PKG=${PACKAGE}\" . 2>/dev/null"
--build-arg \"IMAGE=${IMAGE}\" --build-arg \"OPAM_PKG=${PACKAGE}\" . "

PACKAGE_DIR=`echo ${PACKAGE} | cut -d'.' -f 1`

Expand All @@ -34,7 +34,7 @@ else
echo ""
/bin/sh -c "${DOCKER_CMD}"
else
/bin/sh -c "${DOCKER_CMD} >/dev/null"
/bin/sh -c "${DOCKER_CMD} >/dev/null 2>/dev/null"
fi

if [ "$?" -ne "0" ]; then
Expand All @@ -50,13 +50,13 @@ if [ -n "${REVDEPS}" ]; then
printf "Building ${PACKAGE} reverse dependencies using ${IMAGE}.. "

DOCKER_CMD="docker build -f ${TEST_PWD}/Dockerfile.revdeps --no-cache \
--build-arg \"IMAGE=${IMAGE}\" --build-arg \"OPAM_PKG=${PACKAGE}\" . 2>/dev/null"
--build-arg \"IMAGE=${IMAGE}\" --build-arg \"OPAM_PKG=${PACKAGE}\" . "

if [ -n "${VERBOSE}" ]; then
echo ""
/bin/sh -c "${DOCKER_CMD}"
else
/bin/sh -c "${DOCKER_CMD} >/dev/null"
/bin/sh -c "${DOCKER_CMD} >/dev/null 2>/dev/null"
fi

if [ "$?" -ne "0" ]; then
Expand Down

0 comments on commit da3659e

Please sign in to comment.