From 6ec5ffb1cebc9c180dc264e3fa5d2ed11811ffa1 Mon Sep 17 00:00:00 2001 From: Leo Date: Mon, 17 Aug 2020 11:58:18 +0200 Subject: [PATCH] Tiltfile: remove live_update for Ethereum now that the build is fast --- Tiltfile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Tiltfile b/Tiltfile index 4b651f5a9..3ad098ccc 100644 --- a/Tiltfile +++ b/Tiltfile @@ -53,15 +53,6 @@ docker_build( # ignore local node_modules (in case they're present) ignore = ["./ethereum/node_modules"], - - # sync smart contract changes to running container for incremental development - # (rebuilding the container is way too slow, thanks npm!) - # - # This relies on --update-mode=exec to work properly with a non-root user. - # https://github.com/tilt-dev/tilt/issues/3708 - live_update = [ - sync("./ethereum", "/home/node/app"), - ], ) k8s_yaml("devnet/eth-devnet.yaml")