Skip to content

Commit

Permalink
fixed bug and moved test script
Browse files Browse the repository at this point in the history
  • Loading branch information
matryer committed Mar 10, 2021
1 parent 9d849c4 commit 40adf82
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 28 deletions.
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ func (a *app) handleIncomingURL(url string) {
}
}
default:
log.Println("incoming URL: skipping, unknown action %q", incomingURL.Action)
log.Printf("incoming URL: skipping, unknown action %q\n", incomingURL.Action)
}
}

Expand Down
25 changes: 25 additions & 0 deletions app/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/bash

set -e

go test

cd ../pkg/metadata
go test
cd ../../app

cd ../pkg/plugins
go test
cd ../../app

cd ../pkg/update
go test
cd ../../app

cd ../tools/sitegen
go test -short
cd ../../app

cd ../xbarapp.com
go test
cd ../app
27 changes: 0 additions & 27 deletions test.sh

This file was deleted.

0 comments on commit 40adf82

Please sign in to comment.