apps/web/Dockerfile invokes scripts/docker-link-repos.sh and scripts/docker-package.sh directly (no bash prefix) - without +x this fails immediately on any fresh clone/full rebuild. The same bug also affects fetchdep.sh, get-version-from-git.sh, layered.sh, normalize-version.sh, and playwright-common/playwright-screenshots.sh, all invoked directly the same way by this repo's own GitHub Actions workflows (build.yml, tests.yml, static_analysis.yaml, docs.yml) - so this was also silently breaking CI, not just Docker builds.
29 lines
690 B
Bash
Executable File
29 lines
690 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
# Automatically link to develop if we're building develop, but only if the caller
|
|
# hasn't asked us to build something else
|
|
BRANCH=$(git rev-parse --abbrev-ref HEAD)
|
|
if [[ $USE_CUSTOM_SDKS == false ]] && [[ $BRANCH == 'develop' ]]
|
|
then
|
|
echo "using develop dependencies for react-sdk and js-sdk"
|
|
USE_CUSTOM_SDKS=true
|
|
JS_SDK_BRANCH='develop'
|
|
fi
|
|
|
|
if [[ $USE_CUSTOM_SDKS == false ]]
|
|
then
|
|
echo "skipping js-sdk install: USE_CUSTOM_SDKS is false"
|
|
exit 0
|
|
fi
|
|
|
|
echo "Linking js-sdk"
|
|
git clone --depth 1 --branch $JS_SDK_BRANCH "$JS_SDK_REPO" js-sdk
|
|
cd js-sdk
|
|
pnpm install
|
|
cd ../
|
|
|
|
echo "Setting up element-web with js-sdk package"
|
|
pnpm link ./js-sdk
|