Skip to content

Commit

Permalink
Use $(CP) instead of calling cp directly
Browse files Browse the repository at this point in the history
- also remove `$(GOSRC)` since the task no longer requies running
  `go-bindata`
  • Loading branch information
aramprice committed Sep 22, 2023
1 parent 7c41876 commit 382f1f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ integration/construct : generate-fake-stemcell-automation
integration-badger : generate-fake-stemcell-automation
go run github.com/onsi/ginkgo/v2/ginkgo -r -v --randomize-all --until-it-fails --timeout 3h integration

generate-fake-stemcell-automation: $(GOSRC) $(FAKE_STEMCELL_AUTOMATION_PATH)
cp $(FAKE_STEMCELL_AUTOMATION_PATH) assets/
generate-fake-stemcell-automation: $(FAKE_STEMCELL_AUTOMATION_PATH)
$(CP) $(FAKE_STEMCELL_AUTOMATION_PATH) assets/

generate: assets/StemcellAutomation.zip

Expand Down

0 comments on commit 382f1f9

Please sign in to comment.