-
Notifications
You must be signed in to change notification settings - Fork 1.7k
fix file sync comment in examples/hot-reload/skaffold.yaml #5693
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix file sync comment in examples/hot-reload/skaffold.yaml #5693
Conversation
@@ -32,7 +32,7 @@ profiles: | |||
DEBUG: 1 | |||
sync: | |||
manual: | |||
# Sync all the javascript files that are in the src folder | |||
# Sync all the python files that are in the src folder |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you also make this change here:
skaffold/integration/examples/hot-reload/skaffold.yaml
Lines 35 to 38 in d030bc1
# Sync all the javascript files that are in the src folder | |
# with the container src folder | |
- src: 'src/**/*.py' | |
dest: . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
…ot-reload/skaffold.yaml
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm!
Codecov Report
@@ Coverage Diff @@
## master #5693 +/- ##
==========================================
- Coverage 70.64% 70.43% -0.22%
==========================================
Files 411 413 +2
Lines 15860 15946 +86
==========================================
+ Hits 11205 11231 +26
- Misses 3827 3883 +56
- Partials 828 832 +4
Continue to review full report at Codecov.
|
…tainerTools#5693) * Change 'javascript files' to 'python files' in python manual sync comment * Change 'javascript files' to 'python files' in integration/examples/hot-reload/skaffold.yaml
Description
The comment in the python manual sync section of the skaffold.yaml erroneously refers to 'javascript'; this changes it to 'python'.