Skip to content

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabhuja committed Aug 21, 2023
1 parent 6903daa commit cbc3f4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ ENV SETUP_LINUX_FILE="setupLinuxEnv.sh" \
INSTALL_DB_BINARIES_FILE="installDBBinaries.sh" \
container="true"
# Use second ENV so that variable get substituted
# Hadlint ignore=DL3044
ENV INSTALL_SCRIPTS=$INSTALL_DIR/install \
PATH=/bin:/usr/bin:/sbin:/usr/sbin:$PATH \
SCRIPT_DIR=$INSTALL_DIR/startup \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ docker build --force-rm=true --no-cache=true ${DOCKEROPS} ${PROXY_SETTINGS} -t $
exit 1
}
BUILD_END=$(date '+%s')
BUILD_ELAPSED=${expr "$BUILD_END" - "$BUILD_START"}
# shellcheck disable=SC2154
BUILD_ELAPSED=$(expr "$BUILD_END" - "$BUILD_START")

echo ""
# shellcheck disable=SC2181,SC2320
Expand Down

0 comments on commit cbc3f4d

Please sign in to comment.