Fix example to use correct shebang (#72129)
* Fix example to use correct shebang * Fix other example modules as well * Ignore shebang test
This commit is contained in:
parent
cfa41898c4
commit
1ae3683d0c
4 changed files with 6 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/python
|
||||
|
||||
# Copyright: (c) 2018, Terry Jones <terry.jones@example.org>
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/python
|
||||
|
||||
# Copyright: (c) 2020, Your Name <YourName@example.org>
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/python
|
||||
|
||||
# Copyright: (c) 2020, Your Name <YourName@example.org>
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
docs/docsite/rst/dev_guide/testing/sanity/no-smart-quotes.rst no-smart-quotes
|
||||
examples/play.yml shebang
|
||||
examples/scripts/my_test.py shebang # example module but not in a normal module location
|
||||
examples/scripts/my_test_facts.py shebang # example module but not in a normal module location
|
||||
examples/scripts/my_test_info.py shebang # example module but not in a normal module location
|
||||
examples/scripts/ConfigureRemotingForAnsible.ps1 pslint:PSCustomUseLiteralPath
|
||||
examples/scripts/upgrade_to_ps3.ps1 pslint:PSCustomUseLiteralPath
|
||||
examples/scripts/upgrade_to_ps3.ps1 pslint:PSUseApprovedVerbs
|
||||
|
|
Loading…
Reference in a new issue