Skip to content

Commit

Permalink
Merge pull request #23 from ooyala/better_package_names
Browse files Browse the repository at this point in the history
move everything under atlantis/builder
  • Loading branch information
alekar committed Mar 20, 2014
2 parents 579aea8 + 68fa090 commit 58850c7
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions builder.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package main

import (
"build"
"docker"
"atlantis/builder/build"
"atlantis/builder/docker"
"flag"
"fmt"
"io/ioutil"
Expand Down
10 changes: 5 additions & 5 deletions src/build/app.go → src/atlantis/builder/build/app.go
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
package build

import (
"docker"
"atlantis/builder/docker"
"atlantis/builder/git"
"atlantis/builder/manifest"
"atlantis/builder/template"
"atlantis/builder/util"
"encoding/json"
"fmt"
"git"
"io"
"io/ioutil"
"manifest"
"os"
"os/exec"
"os/user"
"path"
"path/filepath"
"strings"
"template"
"time"
"util"
)

// NOTE(manas) This programs panics in places you'd expect it to call log.Fatal(). The panic allows
Expand Down
2 changes: 1 addition & 1 deletion src/build/boot.go → src/atlantis/builder/build/boot.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package build

import (
"docker"
"atlantis/builder/docker"
"errors"
"fmt"
"path"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/git/client.go → src/atlantis/builder/git/client.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package git

import (
"atlantis/builder/util"
"os"
"os/exec"
"strings"
"util"
)

type Info struct {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 58850c7

Please sign in to comment.