-
When i add fb link link to footer in config.yml , after that when i build with netlify the build failed. Build Log: 10:33:13 AM: Build ready to start here is the error ******************* 10:33:42 AM: ------------------------------------------------ My config.yml file Welcome to Jekyll!This config file is meant for settings that affect your entire site, valueswhich you are expected to set up once and rarely need to edit after that.For technical reasons, this file is NOT reloaded automatically when you use
|
Beta Was this translation helpful? Give feedback.
Replies: 7 comments
-
Would you please wrap the content in code blocks so they're easier to read? Like this: ```
code code
``` |
Beta Was this translation helpful? Give feedback.
-
Netlify Build Log 10:47:03 AM: Skipping functions preparation step: no functions directory set 10:47:03 AM: Caching artifacts 10:47:03 AM: Started saving ruby gems 10:47:03 AM: Finished saving ruby gems 10:47:03 AM: Started saving node modules 10:47:03 AM: Finished saving node modules 10:47:03 AM: Started saving pip cache 10:47:03 AM: Finished saving pip cache 10:47:03 AM: Started saving emacs cask dependencies 10:47:03 AM: Finished saving emacs cask dependencies 10:47:03 AM: Started saving maven dependencies 10:47:03 AM: Finished saving maven dependencies 10:47:03 AM: Started saving boot dependencies 10:47:03 AM: Finished saving boot dependencies 10:47:03 AM: Started saving go dependencies 10:47:03 AM: Finished saving go dependencies 10:47:07 AM: Error running command: Build script returned non-zero exit code: 1 10:47:07 AM: Failing build: Failed to build site 10:47:08 AM: failed during stage 'building site': Build script returned non-zero exit code: 1 10:47:08 AM: Finished processing build request in 3m46.234332407s _Config.yml (When link in uncommented in site Author section then build fails)
This config file is meant for settings that affect your entire site, valueswhich you are expected to set up once and rarely need to edit after that.For technical reasons, this file is NOT reloaded automatically when you use
|
Beta Was this translation helpful? Give feedback.
-
Please see GitHub Help and format your content as Fenced code blocks properly. |
Beta Was this translation helpful? Give feedback.
-
Sorry i did from the above menu but that does not work...
|
Beta Was this translation helpful? Give feedback.
-
kindly guide me how should i change the author link or website link in config.yaml |
Beta Was this translation helpful? Give feedback.
-
Your - label: "Twitter"
icon: "fab fa-fw fa-twitter-square"
url: "https://twitter.com/"
- label: "Facebook" Fixing that line solves the issue for me: # url: "https://your-website.com"
- label: "Twitter"
icon: "fab fa-fw fa-twitter-square"
- url: "https://twitter.com/"
+ url: "https://twitter.com/"
- label: "Facebook"
icon: "fab fa-fw fa-facebook-square"
#url: "https://facebook.com/"
- label: "GitHub" |
Beta Was this translation helpful? Give feedback.
-
Thanks.. |
Beta Was this translation helpful? Give feedback.
Your
_config.yml
file isn't indented properly, specifically the Twitterurl:
key has an extra (unexpected) space:Fixing that line solves the issue for me: