Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
pyama86 committed Oct 8, 2024
1 parent 4e8b733 commit 1080369
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ pkg:

yumrepo: ## Create some distribution packages
sudo rm -rf repo/centos
docker-compose build yumrepo
docker-compose run -e GPG_PASSWORD=$(GPG_PASSWORD) yumrepo
docker compose build yumrepo
docker compose run -e GPG_PASSWORD=$(GPG_PASSWORD) yumrepo

debrepo: ## Create some distribution packages
for i in $(PRODUCT_CODES); do\
if [ "$$i" = "centos" ];then continue; fi; \
if [ "$$i" = "almalinux" ];then continue; fi; \
sudo rm -rf repo/$$i; \
docker-compose build debrepo-$$i; \
docker-compose run -e GPG_PASSWORD=$(GPG_PASSWORD) debrepo-$$i; \
docker compose build debrepo-$$i; \
docker compose run -e GPG_PASSWORD=$(GPG_PASSWORD) debrepo-$$i; \
done

production_deploy: ENVIRONMENT=production
Expand Down

0 comments on commit 1080369

Please sign in to comment.