Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tb06904 committed Dec 19, 2023
1 parent d0dddcd commit 9725644
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ on:
branches:
- 'release/**'
- 'hotfix/**'
workflow_dispatch:

jobs:
build:
Expand Down
7 changes: 5 additions & 2 deletions cd/build_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
# Required for variables from sourced env file to automatically be visible to docker compose.
set -e -a

ROOT_DIR="$("$(dirname "$(dirname "${0}")")")"
cd "${ROOT_DIR}"
ROOT_DIR="$(readlink -f "$(dirname "$(dirname "${0}")")")"

pushd "${ROOT_DIR}" || exit 1

# The following env file will be sourced to set:
# HADOOP_VERSION
Expand Down Expand Up @@ -48,3 +49,5 @@ docker compose --project-directory ./docker/spark-py/ -f ./docker/spark-py/docke
source ./docker/gaffer-jhub-options-server/get-version.sh
# Builds the jhub options server:
docker compose --project-directory ./docker/gaffer-jhub-options-server/ -f ./docker/gaffer-jhub-options-server/docker-compose.yaml build

popd || exit 1
2 changes: 1 addition & 1 deletion docker/gaffer-gremlin/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

declare SCRIPT_DIR="$(dirname "${0}")"
declare SCRIPT_DIR="$(readlink -f "$(dirname "${0}")")"

# Check if already have env var for version
[[ -z "${GAFFER_VERSION}" ]] && \
Expand Down

0 comments on commit 9725644

Please sign in to comment.