mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-04 06:13:09 +00:00
Fix setup-circuits realpath helpers
This commit is contained in:
parent
99da5da1cc
commit
2c54c17239
@ -85,14 +85,16 @@ echo "Workspace: ${ROOT_DIR}"
|
|||||||
LINUX_PLATFORM="linux-x86_64"
|
LINUX_PLATFORM="linux-x86_64"
|
||||||
|
|
||||||
echo "Installing Linux bundle for Docker image into ${STACK_DIR}"
|
echo "Installing Linux bundle for Docker image into ${STACK_DIR}"
|
||||||
stage_real="$(python3 - <<'PY'
|
stage_real="$(python3 - "${LINUX_STAGE_DIR}" <<'PY'
|
||||||
import os, sys
|
import os, sys
|
||||||
print(os.path.realpath(sys.argv[1]))
|
print(os.path.realpath(sys.argv[1]))
|
||||||
PY "${LINUX_STAGE_DIR}")"
|
PY
|
||||||
stack_real="$(python3 - <<'PY'
|
)"
|
||||||
|
stack_real="$(python3 - "${STACK_DIR}" <<'PY'
|
||||||
import os, sys
|
import os, sys
|
||||||
print(os.path.realpath(sys.argv[1]))
|
print(os.path.realpath(sys.argv[1]))
|
||||||
PY "${STACK_DIR}")"
|
PY
|
||||||
|
)"
|
||||||
|
|
||||||
if [ "$stage_real" = "$stack_real" ]; then
|
if [ "$stage_real" = "$stack_real" ]; then
|
||||||
# No staging copy needed; install directly into STACK_DIR.
|
# No staging copy needed; install directly into STACK_DIR.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user