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:26:48 +0300
committerLeonardo Faria <leonardofaria@gmail.com>2020-07-13 01:26:48 +0300
commit8f7348f2f2405f7585cf4fb6268268b178bb3b5e (patch)
tree40ea823a8db284940ee08e61b88c4ae03773ad9b
parente5d3ac46f980f84b526c70bc92a1d4b6ac6f73b2 (diff)
Fix build command
-rw-r--r--netlify.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/netlify.toml b/netlify.toml
index 6d3fff5..362a01e 100644
--- a/netlify.toml
+++ b/netlify.toml
@@ -1,18 +1,18 @@
[build]
publish = "exampleSite/public"
- command = "cd .. && cp -r repo bento && cd bento && yarn build:example && echo $PWD && ls && cp -r public ../repo"
+ command = "cd .. && cp -r repo bento && cd bento && yarn build:example"
[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 && echo $PWD && ls && cp -r public ../repo"
+ command = "HUGO_BASEURL=$DEPLOY_PRIME_URL cd .. && mv repo bento && cd bento && yarn build:example"
[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 && echo $PWD && ls && cp -r public ../repo"
+ command = "HUGO_BASEURL=$DEPLOY_PRIME_URL cd .. && mv repo bento && cd bento && yarn build:example"
[context.branch-deploy.environment]
HUGO_GOOGLEANALYTICS = "dev" \ No newline at end of file