Revert to original BuilderId
This commit is contained in:
parent
42d749ab5f
commit
e294db8ede
|
@ -5,7 +5,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
)
|
)
|
||||||
|
|
||||||
const BuilderId = "vtolstov.compress"
|
const BuilderId = "packer.post-processor.compress"
|
||||||
|
|
||||||
type Artifact struct {
|
type Artifact struct {
|
||||||
builderId string
|
builderId string
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
package compress
|
package compress
|
||||||
|
|
||||||
import (
|
import (
|
||||||
tar "archive/tar"
|
"archive/tar"
|
||||||
zip "archive/zip"
|
"archive/zip"
|
||||||
"compress/flate"
|
"compress/flate"
|
||||||
gzip "compress/gzip"
|
"compress/gzip"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
|
@ -13,13 +13,13 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
bgzf "github.com/biogo/hts/bgzf"
|
"github.com/biogo/hts/bgzf"
|
||||||
pgzip "github.com/klauspost/pgzip"
|
"github.com/klauspost/pgzip"
|
||||||
"github.com/mitchellh/packer/common"
|
"github.com/mitchellh/packer/common"
|
||||||
"github.com/mitchellh/packer/helper/config"
|
"github.com/mitchellh/packer/helper/config"
|
||||||
"github.com/mitchellh/packer/packer"
|
"github.com/mitchellh/packer/packer"
|
||||||
"github.com/mitchellh/packer/template/interpolate"
|
"github.com/mitchellh/packer/template/interpolate"
|
||||||
lz4 "github.com/pierrec/lz4"
|
"github.com/pierrec/lz4"
|
||||||
"gopkg.in/yaml.v2"
|
"gopkg.in/yaml.v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue