Skip to content

Commit 2614c9f

Browse files
committed
Move files to static and scripts
1 parent e844789 commit 2614c9f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This is a Jupyter notebook, and depends on the tooling system of Jupyter Noteboo
1313
- Clone this repository locally.
1414
- Edit any Markdown locally.
1515
- Add any pages that you want to be in the Table of Contents to `_toc.yml`.
16-
- Run `build.sh` in order to automatically build the changes. You may need to run `chmod +x build.sh` to make this executable, first.
16+
- Run `scripts/build.sh` in order to automatically build the changes. You may need to run `chmod +x scripts/build.sh` to make this executable, first.
1717

1818
## Development
1919

@@ -58,7 +58,7 @@ open _build/html/index.html
5858
If you need to manually deploy (rare), you can use:
5959

6060
```bash
61-
./build.sh
61+
./scripts/build.sh
6262
```
6363

6464
This runs all checks, builds the book, and pushes to the `gh-pages` branch using `ghp-import`.

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
title: SustainOSS Academic Ecosystem Map
55
author: SustainOSS Academic Working Group
6-
logo: logo.svg
6+
logo: static/logo.svg
77
exclude_patterns: [README.md, CODE_OF_CONDUCT.md, contributing.md, node_modules, organizations/example.md]
88

99
# Force re-execution of notebooks on each build.

contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ In order to add your university, you need to edit the code that this website is
3636

3737
4. Build.
3838

39-
You need to run a build. Running `$ ./build.sh` should work, locally. If it doesn't, [open an issue](https://github.com/sustainers/academic-map/issues/new) and log that. If you're adding your text online, don't worry about running a build - the merger will be responsible for that.
39+
You need to run a build. Running `$ ./scripts/build.sh` should work, locally. If it doesn't, [open an issue](https://github.com/sustainers/academic-map/issues/new) and log that. If you're adding your text online, don't worry about running a build - the merger will be responsible for that.
4040

4141
5. Lint the markdown.
4242

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"build": "jupyter-book build --all .",
88
"prebuild": "npm run check-toc",
9-
"publish": "./build.sh",
9+
"publish": "./scripts/build.sh",
1010
"lint": "markdownlint . -i _build/ -i node_modules --rules markdownlint-custom-rules.js",
1111
"lint-fix": "markdownlint --fix . -i _build/ -i node_modules",
1212
"links": "markdown-link-check ./*.md -c mdlinkcheckconfig.json && markdown-link-check ./**/*.md -c mdlinkcheckconfig.json",

build.sh renamed to scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Note: For production deploys, the GitHub Action in .github/workflows/deploy-book.yml is used
55
# This script is for manual local deployments only
66

7-
# Make sure you run `chmod +x build.sh` before attempting to run it.
7+
# Make sure you run `chmod +x scripts/build.sh` before attempting to run it.
88

99
set -e # Exit on any error
1010

File renamed without changes.

0 commit comments

Comments
 (0)