Skip to content

Commit

Permalink
Add dummy command for example without implementation (#108)
Browse files Browse the repository at this point in the history
`ss` example command only works on Linux, added a dummy command so
execution of tests in other platforms works.
  • Loading branch information
jsoriano authored and ruflin committed Jul 18, 2018
1 parent 0b76fd4 commit 56cb7e1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions examples/ss/ss_other.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// +build !linux

package main

import (
"fmt"
)

func main() {
fmt.Println("This command is only available on Linux")
}

0 comments on commit 56cb7e1

Please sign in to comment.