diff --git a/.github/workflows/lint-test-build.yml b/.github/workflows/lint-test-build.yml index d04a44fba..c4df13de3 100644 --- a/.github/workflows/lint-test-build.yml +++ b/.github/workflows/lint-test-build.yml @@ -23,7 +23,7 @@ jobs: with: path: example_training_data key: training_data - - run: ./get_training_data + - run: ./get_training_data.sh working-directory: ./ lint-lib-core: diff --git a/cli/README.md b/cli/README.md index 66bbad2ca..5abac9a74 100644 --- a/cli/README.md +++ b/cli/README.md @@ -23,7 +23,7 @@ npm start -- -t cifar10 -u 4 -e 15 -r 5 - install node 16 and ensure it is activated on opening any new terminal (e.g. `nvm use 16`) - `git clone git@github.com:epfml/disco.git` - download the `example_training_data.tar.gz` file and extract it into the root of the repository - - simply execute [get_training_data.sh](../get_training_data) + - simply execute [get_training_data.sh](../get_training_data.sh) - `npm ci` within `discojs`, `server` and `cli` - `cd discojs/discojs-node && npm run build` diff --git a/docs/node_example/README.md b/docs/node_example/README.md index bf805b01d..e31e4ca9e 100644 --- a/docs/node_example/README.md +++ b/docs/node_example/README.md @@ -8,7 +8,7 @@ To run the example do ``` nvm use -./get_training_data +./get_training_data.sh cd discojs && npm ci cd discojs-node && npm run build cd ../..