We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63101ef commit 11fcfe4Copy full SHA for 11fcfe4
Makefile
@@ -2,14 +2,13 @@ NAME := kubernetes-101
2
GS_BUCKET := slides.eightypercent.net
3
4
upload-nocache:
5
- gsutil -m -h "Cache-Control:private, max-age=0" rsync -c -r . gs://$(GS_BUCKET)/$(NAME)
+ gsutil -m -h "Cache-Control:private, max-age=0" rsync -x '$\.git/' -c -r . gs://$(GS_BUCKET)/$(NAME)
6
7
upload:
8
- gsutil -m rsync -c -r . gs://$(GS_BUCKET)/$(NAME)
+ gsutil -m rsync -x '$\.git/' -c -r . gs://$(GS_BUCKET)/$(NAME)
9
10
copy:
11
gsutil -m cp -r . gs://$(GS_BUCKET)/$(NAME)
12
13
release-zip:
14
make-release-zip.sh
15
-
0 commit comments