Skip to content

Commit c6c32c1

Browse files
authored
Ignore dangling symlinks for gcloud (#4441)
## Motivation After #4383, we now have a dangling symlink in the repository, that points to the compiled `linera-web` once built. However, `gcloud builds` (which is what we use in `lineractl` to build our Docker Images) doesn't like dangling symlinks. ## Proposal Add the dangling symlinks to `.gcloudignore` to make sure `gcloud` commands ignore it, and the builds succeed. ## Test Plan Did a build with `gcloud builds` and now it works again ## Release Plan - Nothing to do / These changes follow the usual release cycle.
1 parent 5313ecb commit c6c32c1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.gcloudignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
# ---------------------------------------------------------------------------------*
55
node_modules
66
npm-debug.log
7+
# Ignore dangling symlinks to node_modules in web examples
8+
examples/*/public/js/@linera/client
9+
examples/*/*/public/js/@linera/client
710
# ignore .git and .cache folders
811
.git
912
.cache

0 commit comments

Comments
 (0)