Skip to content

Commit 93b03d6

Browse files
committed
update bash file name
1 parent 62e8159 commit 93b03d6

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

Jenkinsfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,7 @@ node {
2929

3030
stage('Generate subgraph file') {
3131
sh """
32-
# Navigate to workspace directory and ensure the script is executable
33-
chmod +x generate_subgraph.sh &&
34-
apk add bash &&
35-
bash ./generate_subgraph.sh '${userInput.network}'
32+
bash generate_subgraph_file.sh '${userInput.network}'
3633
"""
3734

3835
// Validate subgraph file generation

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ This project includes a bash script, `generate_subgraph.sh`, to automate the cre
5959

6060
**Run the script with the network name**:
6161
```bash
62-
bash ./generate_subgraph.sh <network-name>
62+
bash generate_subgraph_file.sh <network-name>
6363
```
6464

6565
### Configuration
@@ -86,7 +86,7 @@ Ensure `config.json` is populated with the required values. Example:
8686
#### Example Command
8787

8888
```bash
89-
bash ./generate_subgraph.sh bellecour
89+
bash generate_subgraph_file.sh bellecour
9090
```
9191

9292
This command generates `subgraph.bellecour.yaml`.

0 commit comments

Comments
 (0)