I think this is a bug, but since I'm a noob maybe ...
# getting-started
b
I think this is a bug, but since I'm a noob maybe I'm just doing it wrong so let me check before filing the bug. I'm more or less following the static web GCP example. In this case, the content I'd like is built by a different tool, so my path is something like
../../webbuilder/output/
and in that output dir are things like
index.html
. When I build it, I end up with some very odd paths in my GCP bucket:
Copy code
$gcloud storage ls -R <gs://mybucket-dev-175abb6/>
<gs://mybucket-dev-175abb6/>:

<gs://mybucket-dev-175abb6/../>:

<gs://mybucket-dev-175abb6/../../>:

<gs://mybucket-dev-175abb6/../../webbuilder/>:

<gs://mybucket-dev-175abb6/../../webbuilder/output/>:
<gs://mybucket-dev-175abb6/../../webbuilder/output/index.html>
That looks like a bug to me, in that I expect
index.html
to end up at the root of the bucket, so it makes for a good website. Am I doing something wrong here?