Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
e3846e39
Commit
e3846e39
authored
Aug 22, 2014
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1434 from frapposelli/fix-vmware-typos
Fixed multiple VMware typos.
parents
944d0e2e
d2a9a98e
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
builder/vmware/common/driver.go
builder/vmware/common/driver.go
+2
-2
builder/vmware/common/driver_fusion5.go
builder/vmware/common/driver_fusion5.go
+1
-1
builder/vmware/common/driver_fusion6.go
builder/vmware/common/driver_fusion6.go
+1
-1
builder/vmware/common/driver_workstation9.go
builder/vmware/common/driver_workstation9.go
+1
-1
builder/vmware/common/driver_workstation_unix.go
builder/vmware/common/driver_workstation_unix.go
+3
-3
website/source/community/index.html.markdown
website/source/community/index.html.markdown
+1
-1
No files found.
builder/vmware/common/driver.go
View file @
e3846e39
...
...
@@ -151,7 +151,7 @@ func normalizeVersion(version string) (string, error) {
i
,
err
:=
strconv
.
Atoi
(
version
)
if
err
!=
nil
{
return
""
,
fmt
.
Errorf
(
"VM
W
are version '%s' is not numeric"
,
version
)
"VM
w
are version '%s' is not numeric"
,
version
)
}
return
fmt
.
Sprintf
(
"%02d"
,
i
),
nil
...
...
@@ -170,7 +170,7 @@ func compareVersions(versionFound string, versionWanted string) error {
if
found
<
wanted
{
return
fmt
.
Errorf
(
"VM
W
are WS version %s, or greater, is required. Found version: %s"
,
versionWanted
,
versionFound
)
"VM
w
are WS version %s, or greater, is required. Found version: %s"
,
versionWanted
,
versionFound
)
}
return
nil
...
...
builder/vmware/common/driver_fusion5.go
View file @
e3846e39
...
...
@@ -12,7 +12,7 @@ import (
"github.com/mitchellh/multistep"
)
// Fusion5Driver is a driver that can run VM
W
are Fusion 5.
// Fusion5Driver is a driver that can run VM
w
are Fusion 5.
type
Fusion5Driver
struct
{
// This is the path to the "VMware Fusion.app"
AppPath
string
...
...
builder/vmware/common/driver_fusion6.go
View file @
e3846e39
...
...
@@ -11,7 +11,7 @@ import (
"strings"
)
// Fusion6Driver is a driver that can run VM
W
are Fusion 5.
// Fusion6Driver is a driver that can run VM
w
are Fusion 5.
type
Fusion6Driver
struct
{
Fusion5Driver
}
...
...
builder/vmware/common/driver_workstation9.go
View file @
e3846e39
...
...
@@ -23,7 +23,7 @@ type Workstation9Driver struct {
}
func
(
d
*
Workstation9Driver
)
Clone
(
dst
,
src
string
)
error
{
return
errors
.
New
(
"Cloning is not supported with VM
Ware WS version 9. Please use VMW
are WS version 10, or greater."
)
return
errors
.
New
(
"Cloning is not supported with VM
ware WS version 9. Please use VMw
are WS version 10, or greater."
)
}
func
(
d
*
Workstation9Driver
)
CompactDisk
(
diskPath
string
)
error
{
...
...
builder/vmware/common/driver_workstation_unix.go
View file @
e3846e39
...
...
@@ -53,7 +53,7 @@ func workstationVmnetnatConfPath() string {
func
workstationVerifyVersion
(
version
string
)
error
{
if
runtime
.
GOOS
!=
"linux"
{
return
fmt
.
Errorf
(
"The VM
W
are WS version %s driver is only supported on Linux, and Windows, at the moment. Your OS: %s"
,
version
,
runtime
.
GOOS
)
return
fmt
.
Errorf
(
"The VM
w
are WS version %s driver is only supported on Linux, and Windows, at the moment. Your OS: %s"
,
version
,
runtime
.
GOOS
)
}
//TODO(pmyjavec) there is a better way to find this, how?
...
...
@@ -71,9 +71,9 @@ func workstationVerifyVersion(version string) error {
matches
:=
versionRe
.
FindStringSubmatch
(
stderr
.
String
())
if
matches
==
nil
{
return
fmt
.
Errorf
(
"Could not find VM
W
are WS version in output: %s"
,
stderr
.
String
())
"Could not find VM
w
are WS version in output: %s"
,
stderr
.
String
())
}
log
.
Printf
(
"Detected VM
W
are WS version: %s"
,
matches
[
1
])
log
.
Printf
(
"Detected VM
w
are WS version: %s"
,
matches
[
1
])
return
compareVersions
(
matches
[
1
],
version
)
}
website/source/community/index.html.markdown
View file @
e3846e39
...
...
@@ -66,7 +66,7 @@ list as contributors come and go.
<div class="bio">
<h3>Ross Smith II (<a href="https://github.com/rasa" target="_blank">@rasa</a>)</h3>
<p>
<a
href=
"http://smithii.com/"
target=
"_blank"
>
Ross Smith
</a>
maintains our VM
W
are builder on Windows, and provides other valuable assistance.
<a
href=
"http://smithii.com/"
target=
"_blank"
>
Ross Smith
</a>
maintains our VM
w
are builder on Windows, and provides other valuable assistance.
Ross is an open source enthusist, published author, and freelance consultant.
</p>
</div>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment