Skip to content

Commit

Permalink
fix: don't add CD to port project
Browse files Browse the repository at this point in the history
  • Loading branch information
tensorush committed Jul 16, 2024
1 parent 782386a commit 5e4d4ec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/liza.zig
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ pub fn initialize(
try createLicense(user_name, repo_dir);
try createPlain(GITIGNORE, ALL_GITIGNORE, repo_dir);
try createPlain(GITATTRIBUTES, ALL_GITATTRIBUTES, repo_dir);
try createPlain(CD_WORKFLOW, ALL_CD_WORKFLOW, workflows_dir);
if (code_type != .prt) {
try createPlain(CD_WORKFLOW, ALL_CD_WORKFLOW, workflows_dir);
}

switch (code_type) {
.exe => {
Expand Down

0 comments on commit 5e4d4ec

Please sign in to comment.