diff options
| author | Rémi Verschelde | 2016-10-17 20:13:18 +0200 |
|---|---|---|
| committer | GitHub | 2016-10-17 20:13:18 +0200 |
| commit | e96c49f849fd9c5e41c8284c7122ec94909badac (patch) | |
| tree | e473a07559ec8d6fc1b98362a2a9badceab4309d /platform | |
| parent | c4b7c7d81bf3d4750aa5a824ec108ba121565c48 (diff) | |
| parent | fc8ccd5b8c8b779bffd0f4d7f22f2f964c939163 (diff) | |
| download | godot-e96c49f849fd9c5e41c8284c7122ec94909badac.tar.gz godot-e96c49f849fd9c5e41c8284c7122ec94909badac.tar.zst godot-e96c49f849fd9c5e41c8284c7122ec94909badac.zip | |
Merge pull request #6850 from akien-mga/pr-scsub-shebang
SCsub: Add python shebang as a hint for syntax highlighting
Diffstat (limited to 'platform')
| -rw-r--r-- | platform/android/SCsub | 2 | ||||
| -rw-r--r-- | platform/bb10/SCsub | 2 | ||||
| -rw-r--r-- | platform/haiku/SCsub | 2 | ||||
| -rw-r--r-- | platform/iphone/SCsub | 2 | ||||
| -rw-r--r-- | platform/javascript/SCsub | 2 | ||||
| -rw-r--r-- | platform/osx/SCsub | 2 | ||||
| -rw-r--r-- | platform/server/SCsub | 2 | ||||
| -rw-r--r-- | platform/windows/SCsub | 2 | ||||
| -rw-r--r-- | platform/winrt/SCsub | 2 | ||||
| -rw-r--r-- | platform/x11/SCsub | 2 |
10 files changed, 20 insertions, 0 deletions
diff --git a/platform/android/SCsub b/platform/android/SCsub index 60bb4bd61..4f9a9709c 100644 --- a/platform/android/SCsub +++ b/platform/android/SCsub @@ -1,3 +1,5 @@ +#!/usr/bin/env python + import shutil Import('env') diff --git a/platform/bb10/SCsub b/platform/bb10/SCsub index 81f6e726e..84fff0828 100644 --- a/platform/bb10/SCsub +++ b/platform/bb10/SCsub @@ -1,3 +1,5 @@ +#!/usr/bin/env python + Import('env') bb10_lib = [ diff --git a/platform/haiku/SCsub b/platform/haiku/SCsub index 1952e6b59..b5a584baa 100644 --- a/platform/haiku/SCsub +++ b/platform/haiku/SCsub @@ -1,3 +1,5 @@ +#!/usr/bin/env python + Import('env') common_haiku = [ diff --git a/platform/iphone/SCsub b/platform/iphone/SCsub index 5b2e1533d..236630bef 100644 --- a/platform/iphone/SCsub +++ b/platform/iphone/SCsub @@ -1,3 +1,5 @@ +#!/usr/bin/env python + Import('env') iphone_lib = [ diff --git a/platform/javascript/SCsub b/platform/javascript/SCsub index fc70d45a0..22af43647 100644 --- a/platform/javascript/SCsub +++ b/platform/javascript/SCsub @@ -1,3 +1,5 @@ +#!/usr/bin/env python + Import('env') javascript_files = [ diff --git a/platform/osx/SCsub b/platform/osx/SCsub index 416979551..217dee81e 100644 --- a/platform/osx/SCsub +++ b/platform/osx/SCsub @@ -1,3 +1,5 @@ +#!/usr/bin/env python + Import('env') files = [ diff --git a/platform/server/SCsub b/platform/server/SCsub index 3dda6b439..12758c5db 100644 --- a/platform/server/SCsub +++ b/platform/server/SCsub @@ -1,3 +1,5 @@ +#!/usr/bin/env python + Import('env') diff --git a/platform/windows/SCsub b/platform/windows/SCsub index 914cee0fa..e53eb7af3 100644 --- a/platform/windows/SCsub +++ b/platform/windows/SCsub @@ -1,3 +1,5 @@ +#!/usr/bin/env python + Import('env') diff --git a/platform/winrt/SCsub b/platform/winrt/SCsub index fde0c11f3..e34d948c3 100644 --- a/platform/winrt/SCsub +++ b/platform/winrt/SCsub @@ -1,3 +1,5 @@ +#!/usr/bin/env python + Import('env') files = [ diff --git a/platform/x11/SCsub b/platform/x11/SCsub index 80fd347de..e20bd44f8 100644 --- a/platform/x11/SCsub +++ b/platform/x11/SCsub @@ -1,3 +1,5 @@ +#!/usr/bin/env python + Import('env') |
