ericholguin commented on code in PR #7180:
URL: https://github.com/apache/trafficcontrol/pull/7180#discussion_r1019552146
##########
dev/atc.dev.sh:
##########
@@ -15,10 +15,16 @@
# specific language governing permissions and limitations
# under the License.
-alias atc-start="docker-compose up -d --build";
alias atc-build="docker-compose build";
alias atc-stop="docker-compose kill && docker-compose down -v
--remove-orphans";
+function atc-start {
+ if [ ! -d "vendor/golang/x" ]; then
+ go mod vendor
+ fi
+ docker-compose up -d --build
Review Comment:
Not sure I understand, but if you want to just add it to your open PR: #7142
I can close this and review that.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]