- Also modify update script - Renamed to update_remote_ui - Repair path inside sciprt - Ensure update script is not copied over to /docs - Add requirements.txt (for python/pip dependencies)
18 lines
390 B
Bash
Executable File
18 lines
390 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pushd "$(dirname "$0")" > /dev/null
|
|
|
|
curl -OL https://nightly.link/google/filament/workflows/web-continuous/main/filament-web.zip
|
|
unzip -q filament-web.zip
|
|
tar -xvzf filament-release-web.tgz
|
|
rm filament-release-web.tgz
|
|
rm filament-web.zip
|
|
rm filament.d.ts
|
|
cp ../../../web/samples/remote.html index.html
|
|
|
|
popd
|
|
|
|
git status
|
|
echo ""
|
|
echo "All done! Next, commit the changed files"
|