Skip to content

Commit

Permalink
Account for missing .pl files
Browse files Browse the repository at this point in the history
  • Loading branch information
domenic committed Oct 24, 2023
1 parent d1e0527 commit 2e0118e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
*
!entities/out
!quotes/out
!*.pl
!build.sh
!lint.sh
!Cargo.lock
Expand Down
9 changes: 1 addition & 8 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
*.conf text eol=lf
*.inc text eol=lf
*.json text eol=lf
*.md text eol=lf
*.pl text eol=lf
*.py text eol=lf
*.sh text eol=lf
*.yml text eol=lf
* text=auto eol=lf
3 changes: 1 addition & 2 deletions ci-build/docker-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@ function main {
# We want the image to contain:
# * All of the important stuff from the top-level (html-build) directory
# * But, the Dockerfile from this (ci-build) directory
# And in particular it should *not* contain the top-level Dockerfile, non-.pl dotfiles, .git/, and
# And in particular it should *not* contain the top-level Dockerfile, dotfiles, .git/, and
# any html/ and output/ directories that might be hanging around from local testing.
cp "$here/Dockerfile" "$TMP_DIR"
cd "$here/.."
cp -r !(.*|html|output|Dockerfile) "$TMP_DIR"
cp .*.pl "$TMP_DIR"
cd "$TMP_DIR"
trap cleanTemp EXIT

Expand Down

0 comments on commit 2e0118e

Please sign in to comment.