Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Faria <leonardofaria@gmail.com>2020-07-13 01:19:14 +0300
committerLeonardo Faria <leonardofaria@gmail.com>2020-07-13 01:19:14 +0300
commitd9cac1455869e87cf38d3a5917ff878259a1bfd5 (patch)
treefb7cfda7227984d53415ffb47983cc51d01497ec
parentea034e08d5d774a2874f1b6b8370ef5f0e02a144 (diff)
Fix build command
-rw-r--r--netlify.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/netlify.toml b/netlify.toml
index 990519e..3311e92 100644
--- a/netlify.toml
+++ b/netlify.toml
@@ -1,18 +1,18 @@
[build]
- publish = "/opt/build/bento/public"
- command = "cd .. && mv repo bento && cd bento && yarn build:example"
+ publish = "../bento/public"
+ command = "cd .. && mv repo bento && cd bento && yarn build:example && echo $PWD"
[build.environment]
HUGO_VERSION = "0.73.0"
[context.deploy-preview]
- command = "HUGO_BASEURL=$DEPLOY_PRIME_URL cd .. && mv repo bento && cd bento && yarn build:example"
+ command = "HUGO_BASEURL=$DEPLOY_PRIME_URL cd .. && mv repo bento && cd bento && yarn build:example && echo $PWD"
[context.deploy-preview.environment]
HUGO_GOOGLEANALYTICS = "dev"
[context.branch-deploy]
- command = "HUGO_BASEURL=$DEPLOY_PRIME_URL cd .. && mv repo bento && cd bento && yarn build:example"
+ command = "HUGO_BASEURL=$DEPLOY_PRIME_URL cd .. && mv repo bento && cd bento && yarn build:example && echo $PWD"
[context.branch-deploy.environment]
HUGO_GOOGLEANALYTICS = "dev" \ No newline at end of file