removed unused fmt package
This commit is contained in:
parent
83424d327e
commit
092348f8f2
1 changed files with 2 additions and 3 deletions
|
@ -1,7 +1,6 @@
|
|||
package deploy
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/drone/drone/pkg/build/buildfile"
|
||||
)
|
||||
|
||||
|
@ -12,8 +11,8 @@ type Nodejitsu struct {
|
|||
}
|
||||
|
||||
func (n *Nodejitsu) Write(f *buildfile.Buildfile) {
|
||||
f.WriteEnv("username", m.User)
|
||||
f.WriteEnv("apiToken", m.Token)
|
||||
f.WriteEnv("username", n.User)
|
||||
f.WriteEnv("apiToken", n.Token)
|
||||
|
||||
// Install the jitsu command line interface then
|
||||
// deploy the configured app.
|
||||
|
|
Loading…
Reference in a new issue