summaryrefslogtreecommitdiff
path: root/build/instructions.go
blob: e807b5b26d146d5700f631776b93906ab319f6f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package build

type InstructionType int

const (
	Run InstructionType = iota
	Copy
	Env
)

type Instruction struct {
	Type      InstructionType
	Arguments []string
}