Skip to content

Commit

Permalink
Merge pull request #13 from osmollo/fix/1.0.17
Browse files Browse the repository at this point in the history
Fix 1.0.17
  • Loading branch information
osmollo committed Jan 20, 2023
2 parents 6ef6f0e + 6df4fcc commit f22c9c1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 4 additions & 5 deletions gorkscrew.go
Original file line number Diff line number Diff line change
Expand Up @@ -325,11 +325,10 @@ func main() {
if *krbauth {
log.Println("Kerberos Config:", *krb5conf)
log.Println("Kerberos SPN:", *krbspn)
}

if !FileExists(*krb5conf) {
log.Printf("kerberos configfile '%s' not exists", *krb5conf)
os.Exit(10)
if !FileExists(*krb5conf) {
log.Printf("kerberos configfile '%s' not exists", *krb5conf)
os.Exit(10)
}
}

if *krbauth {
Expand Down
2 changes: 1 addition & 1 deletion release.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "1.0.16",
"version": "1.0.17",
"go_version": "1.18.8"
}
2 changes: 2 additions & 0 deletions test/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# TEST

:construction_worker: **WORKING IN PROGRESS**: docker images used in tests are obsolete and it doesn't work

- [TEST](#test)
- [Install docker-compose](#install-docker-compose)
- [GORSKCREW tests](#gorskcrew-tests)
Expand Down

0 comments on commit f22c9c1

Please sign in to comment.