Skip to content

Commit

Permalink
bugfix in the porting tool
Browse files Browse the repository at this point in the history
Signed-off-by: Hugo Lefeuvre <[email protected]>
  • Loading branch information
hlef committed Dec 1, 2021
1 parent d709e7b commit 70adc26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ token
and run instead:

```
$ docker build --build-arg UK_KRAFT_GITHUB_TOKEN="<YOUR TOKEN>" --tag flexos-dev
$ docker build -f flexos.dockerfile --build-arg UK_KRAFT_GITHUB_TOKEN="<YOUR TOKEN>" --tag flexos-dev .
```

Run the container as following:
Expand Down
5 changes: 3 additions & 2 deletions flexos-support/porthelper/parse_results.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import glob, os
import csv
import re

def write_csv(outfile, lines):
f = open(outfile, 'w+', newline='')
writer = csv.writer(f, delimiter=',',
f = open(outfile, 'w+', newline='\n')
writer = csv.writer(f, delimiter=',',lineterminator='\n',
quotechar='|', quoting=csv.QUOTE_MINIMAL)

for line in lines:
Expand Down

0 comments on commit 70adc26

Please sign in to comment.