mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
11 lines
196 B
Bash
11 lines
196 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [[ "$GRIST_SANDBOX_FLAVOR" = "gvisor" ]]; then
|
||
|
./sandbox/gvisor/update_engine_checkpoint.sh
|
||
|
source ./sandbox/gvisor/get_checkpoint_path.sh
|
||
|
fi
|
||
|
|
||
|
exec yarn run start:prod
|