Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@ jobs:
steps:

- uses: actions/checkout@v4

- name: Fetch all history for all tags and branches
run: git fetch --prune --unshallow
with:
fetch-depth: 0

- uses: actions/setup-java@v4
with:
Expand Down Expand Up @@ -77,7 +76,6 @@ jobs:
path: product/target/openfasttrace-*.jar

- name: Run self-trace
if: ${{ matrix.os != 'macos-latest' }}
run: ./oft-self-trace.sh

- name: Upload self-tracing report
Expand All @@ -93,4 +91,4 @@ jobs:
needs: matrix-build
runs-on: ubuntu-latest
steps:
- run: echo "Build successful"
- run: echo "Build successful"
2 changes: 1 addition & 1 deletion core/src/main/resources/usage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Common options:
"monochrome", "color". Defaults to "color".
Note that this option is ignored when -f is also
set.
-f, --file path The output file. Defaults to STDOUT.
-f, --output-file path The output file. Defaults to STDOUT.
-n, --newline format Newline format. One of "unix", "windows", "oldmac"
-t, --wanted-tags Import only specification items that have at
least one tag contained in the comma-separated
Expand Down

This file was deleted.

This file was deleted.

4 changes: 4 additions & 0 deletions doc/changes/changes_3.8.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,7 @@ The HTML report now allows expanding all details sections with command line opti
* #366: Allow all unicode characters in names of specification ID names (thanks to [@sebastianohl](https://github.com/sebastianohl) for the bug report!)
* #373: Ignore spaces after items in "Needs:" and "Tags:" lists (thanks to [@sambishop](https://github.com/sambishop) for his contribution!)
* #378: Merged integration test coverage with unit test coverage for representative overall figure

## Refactoring

* #222: Fixed Java compiler warnings
2 changes: 1 addition & 1 deletion doc/user_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ Defaults to `specobject`.

#### Common Options

-f, --file <path>
-f, --output-file <path>

The output file or in case the output consists of more than one file, the output path. Defaults to STDOUT if not given.

Expand Down
Loading