Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Ortel <[email protected]>
  • Loading branch information
jortel committed Aug 16, 2024
1 parent d159aa3 commit 377f072
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion api/analysis.go
Original file line number Diff line number Diff line change
Expand Up @@ -2941,7 +2941,6 @@ func (r *ManifestReader) open(path, begin, end string) (reader io.ReadCloser, er
r.begin = r.begin + int64(len(begin))
r.begin++
r.read = r.end - r.begin
r.read++
r.file, err = os.Open(path)
if err != nil {
return
Expand Down
10 changes: 5 additions & 5 deletions hack/add/analysis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ konveyor.io/target=jbpm
#
# Analysis
#
printf "\x1DBEGIN-ANALYSIS\x1D\n" > ${file}
echo "---
printf "\x1DBEGIN-MAIN\x1D\n" > ${file}
echo -n "---
commit: "1234"
" >> ${file}
printf "\x1DEND-ANALYSIS\x1D\n" >> ${file}
printf "\x1DEND-MAIN\x1D\n" >> ${file}
#
# Issues
#
Expand Down Expand Up @@ -156,7 +156,7 @@ done
done
done
printf "\x1DEND-ISSUES\x1D
\x1DBEGIN-DEPENDENCIES\x1D\n" >> ${file}
\x1DBEGIN-DEPS\x1D\n" >> ${file}
#
# Deps
#
Expand Down Expand Up @@ -198,7 +198,7 @@ echo -n "---
name: github.com/java
version: 8
" >> ${file}
echo "___END-DEPENDENCIES___" >> ${file}
printf "\x1DEND-DEPS\x1D\n" >> ${file}

echo "Manifest (file) GENERATED: ${file}"

Expand Down
2 changes: 1 addition & 1 deletion migration/v15/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"gorm.io/gorm"
)

var log = logr.WithName("migration|v14")
var log = logr.WithName("migration|v15")

type Migration struct{}

Expand Down

0 comments on commit 377f072

Please sign in to comment.