Skip to content

Commit

Permalink
fix cmd path
Browse files Browse the repository at this point in the history
  • Loading branch information
ajschmidt8 committed Sep 22, 2022
1 parent 7632753 commit cdb66e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/rapids-env-update
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if rapids-is-stable-build; then
fi

# If nightly or branch build, append current YYMMDD to version
if [[ "${RAPIDS_BUILD_TYPE}" != "pull-request" ]] && ! ./tools/rapids-is-stable-build; then
if [[ "${RAPIDS_BUILD_TYPE}" != "pull-request" ]] && ! rapids-is-stable-build; then
VERSION_SUFFIX=$(date +%y%m%d)
export VERSION_SUFFIX
fi
2 changes: 1 addition & 1 deletion tools/rapids-is-stable-build
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# A "stable" build occurs when the GITHUB_REF environment variable matches
# the pattern "refs/tags/vYY.MM.PP".
# Example:
# if ./tools/rapids-is-stable-build; then echo "hi"; fi
# if rapids-is-stable-build; then echo "hi"; fi
set -e

echo_prefix=" [rapids-is-stable-build]"
Expand Down

0 comments on commit cdb66e2

Please sign in to comment.