Skip to content

Commit c0220f9

Browse files
authored
Merge pull request revel#1133 from notzippy/sample-to-example
Changed samples to example to match repository
2 parents 56a65c3 + 5e08651 commit c0220f9

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

.travis.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ install:
3838
- git clone -b $REVEL_BRANCH git://github.com/revel/cmd ../cmd/
3939
- git clone -b $REVEL_BRANCH git://github.com/revel/config ../config/
4040
- git clone -b $REVEL_BRANCH git://github.com/revel/cron ../cron/
41-
- git clone -b $REVEL_BRANCH git://github.com/revel/samples ../samples/
41+
- git clone -b $REVEL_BRANCH git://github.com/revel/examples ../examples/
4242
- go get -v github.com/revel/revel/...
4343
- go get -v github.com/revel/cmd/revel
4444

@@ -55,18 +55,10 @@ script:
5555
- revel package my/testapp
5656
- revel package my/testapp prod
5757

58-
# Build & run the sample apps
59-
- revel test github.com/revel/samples/booking
60-
- revel test github.com/revel/samples/chat
61-
- revel test github.com/revel/samples/facebook-oauth2
62-
- revel test github.com/revel/samples/twitter-oauth
63-
- revel test github.com/revel/samples/validation
64-
- revel test github.com/revel/samples/upload
65-
6658
# Commented out persona test sample, since persona.org gonna be shutdown.
6759
# Also http://personatestuser.org becomes non-responsive most of the time.
6860
# https://wiki.mozilla.org/Identity/Persona_Shutdown_Guidelines_for_Reliers
69-
# - revel test github.com/revel/samples/persona
61+
# - revel test github.com/revel/examples/persona
7062

7163
matrix:
7264
allow_failures:

errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ type SourceLine struct {
3636
func NewErrorFromPanic(err interface{}) *Error {
3737

3838
// Parse the filename and line from the originating line of app code.
39-
// /Users/robfig/code/gocode/src/revel/samples/booking/app/controllers/hotels.go:191 (0x44735)
39+
// /Users/robfig/code/gocode/src/revel/examples/booking/app/controllers/hotels.go:191 (0x44735)
4040
stack := string(debug.Stack())
4141
frame, basePath := findRelevantStackFrame(stack)
4242
if frame == -1 {

0 commit comments

Comments
 (0)