Created
October 23, 2020 20:51
-
-
Save cgwalters/f3af4e94802765747390a83ecaa97692 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
$ diff --git a/go.mod b/go.mod | |
index b11051831..eafa9ed83 100644 | |
--- a/go.mod | |
+++ b/go.mod | |
@@ -20,6 +20,7 @@ require ( | |
github.com/c4milo/gotoolkit v0.0.0-20190525173301-67483a18c17a // indirect | |
github.com/clarketm/json v1.14.1 | |
github.com/containers/image v3.0.2+incompatible | |
+ github.com/coreos/ign-converter v0.0.0-20200918193805-44d462f1c700 | |
github.com/coreos/ignition/v2 v2.3.0 | |
github.com/dmacvicar/terraform-provider-libvirt v0.6.2 | |
github.com/frankban/quicktest v1.7.2 // indirect | |
diff --git a/go.sum b/go.sum | |
index 108ff88b5..0964221b2 100644 | |
--- a/go.sum | |
+++ b/go.sum | |
@@ -374,6 +374,8 @@ github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7 | |
github.com/coreos/go-systemd/v22 v22.0.0 h1:XJIw/+VlJ+87J+doOxznsAWIdmWuViOVhkQamW5YV28= | |
github.com/coreos/go-systemd/v22 v22.0.0/go.mod h1:xO0FLkIi5MaZafQlIrOotqXZ90ih+1atmu1JpKERPPk= | |
github.com/coreos/ign-converter v0.0.0-20200629171308-e40a44f244c5/go.mod h1:LNu0WTt8iVH/WJH15R/SjZw7AdyY2qAyf9ILZTCBvho= | |
+github.com/coreos/ign-converter v0.0.0-20200918193805-44d462f1c700 h1:Un1+sTzUeZGSr0gFIpHMUEZnwfBJeswD1ZJS05W8m/Y= | |
+github.com/coreos/ign-converter v0.0.0-20200918193805-44d462f1c700/go.mod h1:LNu0WTt8iVH/WJH15R/SjZw7AdyY2qAyf9ILZTCBvho= | |
github.com/coreos/ignition v0.33.0/go.mod h1:WJQapxzEn9DE0ryxsGvm8QnBajm/XsS/PkrDqSpz+bA= | |
github.com/coreos/ignition v0.34.0/go.mod h1:WJQapxzEn9DE0ryxsGvm8QnBajm/XsS/PkrDqSpz+bA= | |
github.com/coreos/ignition v0.35.0 h1:UFodoYq1mOPrbEjtxIsZbThcDyQwAI1owczRDqWmKkQ= | |
diff --git a/vendor/modules.txt b/vendor/modules.txt | |
index 8ebb85792..a2d1c3bf1 100644 | |
--- a/vendor/modules.txt | |
+++ b/vendor/modules.txt | |
@@ -417,6 +417,9 @@ github.com/coreos/go-json | |
github.com/coreos/go-semver/semver | |
# github.com/coreos/go-systemd/v22 v22.0.0 | |
github.com/coreos/go-systemd/v22/unit | |
+# github.com/coreos/ign-converter v0.0.0-20200918193805-44d462f1c700 | |
+## explicit | |
+github.com/coreos/ign-converter | |
# github.com/coreos/ignition/v2 v2.3.0 | |
## explicit | |
github.com/coreos/ignition/v2/config/shared/errors | |
$ ./hack/build-go.sh | |
package github.com/openshift/installer/cmd/openshift-install | |
imports github.com/coreos/ign-converter: no Go files in /var/srv/walters/src/github/openshift/installer/vendor/github.com/coreos/ign-converter | |
$ ls -al vendor/github.com/coreos/ign-converter/ | |
total 28 | |
drwxr-xr-x. 1 walters walters 56 Oct 23 20:48 ./ | |
drwxr-xr-x. 1 walters walters 110 Oct 23 20:48 ../ | |
-rw-r--r--. 1 walters walters 11325 Oct 23 20:48 LICENSE | |
-rw-r--r--. 1 walters walters 2880 Oct 23 20:48 README.md | |
-rw-r--r--. 1 walters walters 338 Oct 23 20:48 go.mod | |
-rw-r--r--. 1 walters walters 5149 Oct 23 20:48 go.sum | |
$ | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment