You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@echo "Building and running resource template converter in temp..."
187
+
@echo "Copying files to $(TEMP_DIR)..."
188
+
@cp -R ./mmv1/. $(TEMP_DIR)/mmv1/
189
+
@cp -R ./tpgtools/. $(TEMP_DIR)/tpgtools/
190
+
@cp -R ./tools/. $(TEMP_DIR)/tools/
191
+
@echo "Listing contents of $(TEMP_DIR)/tools:"
192
+
@ls -la $(TEMP_DIR)/tools
193
+
@echo "Listing contents of $(TEMP_DIR)/tools/resource-template-converter:"
194
+
@ls -la $(TEMP_DIR)/tools/resource-template-converter || echo "$(TEMP_DIR)/tools/resource-template-converter not found after copy"
191
195
@echo "Building resource template converter in temp..."
192
-
cd $(TEMP_DIR)/tools/resource-template-converter && go env -w GO111MODULE=on && go mod tidy && go build -v -o $(TEMP_DIR)/tools/convert-resource-template .
196
+
cd $(TEMP_DIR)/tools/resource-template-converter && go env -w GO111MODULE=on && go mod tidy && go build -v -o $(TEMP_DIR)/tools/convert-resource-template . && echo "BUILD SUCCEEDED" || (echo "BUILD FAILED"; exit 1)
0 commit comments