Skip to content

Commit

Permalink
provide proper path to compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
iainsproat committed Jan 2, 2025
1 parent 6ff569b commit 5f86467
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rest-api-fuzzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
if: steps.cache-restler-bin-restore.outputs.cache-hit != 'true'
run: |
python ${{ github.workspace }}/restler-fuzzer/build-restler.py --dest_dir ${{ github.workspace }}/bin
python -m compileall -b /bin/restler
python -m compileall -b ${{ github.workspace }}/bin/restler
- name: Debug the built output
run: |
Expand Down
2 changes: 1 addition & 1 deletion setup/fuzzer/dictionary.restler.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"restler_fuzzable_bool": ["true"],
"restler_fuzzable_object": ["{ \"fuzz\": false }"],
"restler_custom_payload": {
"/graphql/post/Content-Type": ["application/json"],
"/graphql/post/content-type": ["application/json"],
"streamId": ["815704124b"]
},
"restler_custom_payload_unquoted": {},
Expand Down

0 comments on commit 5f86467

Please sign in to comment.