mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-25 19:04:59 -05:00
8 lines
158 B
Go
8 lines
158 B
Go
// +build !linux
|
|
|
|
package client
|
|
|
|
// IsAzure returns true if Packer is running on Azure (currently only works on Linux)
|
|
func IsAzure() bool {
|
|
return false
|
|
}
|