Skip to content

Commit

Permalink
fix install (#12872)
Browse files Browse the repository at this point in the history
  • Loading branch information
finleydecker authored Apr 18, 2024
1 parent ccb8cd8 commit ae1f53f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion operator_ui/check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
# jq ^1.6 https://stedolan.github.io/jq/

repo=smartcontractkit/operator-ui
gitRoot=$(git rev-parse --show-toplevel)
gitRoot="$(dirname -- "$0")/../"
cd "$gitRoot/operator_ui"

tag_file=TAG
Expand Down
2 changes: 1 addition & 1 deletion operator_ui/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
owner=smartcontractkit
repo=operator-ui
fullRepo=${owner}/${repo}
gitRoot=$(git rev-parse --show-toplevel || pwd)
gitRoot="$(dirname -- "$0")/../"
cd "$gitRoot/operator_ui"
unpack_dir="$gitRoot/core/web/assets"
tag=$(cat TAG)
Expand Down

0 comments on commit ae1f53f

Please sign in to comment.