Skip to content

Commit

Permalink
python scripts: add shebang and make executable
Browse files Browse the repository at this point in the history
  • Loading branch information
erichstuder committed Nov 10, 2024
1 parent 1d9fd2c commit 99a069d
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MBSE/doc/run.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python3

import pathlib
import os
import sys
Expand Down
2 changes: 2 additions & 0 deletions Textual/doc/run.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python3

import pathlib
import os
import sys
Expand Down
2 changes: 2 additions & 0 deletions Textual/run.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python3

import sys
import pathlib

Expand Down
2 changes: 2 additions & 0 deletions Textual/simulator/features/run.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python3

import pathlib
import sys

Expand Down
2 changes: 2 additions & 0 deletions Textual/simulator/run.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python3

import sys
import pathlib

Expand Down
2 changes: 2 additions & 0 deletions Textual/simulator/unit_tests/run.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python3

import pathlib
import sys

Expand Down
2 changes: 2 additions & 0 deletions doc/run.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python3

import pathlib
import os
import sys
Expand Down
2 changes: 2 additions & 0 deletions run.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python3

from Shared.project_management.dispatcher import Dispatcher, run_command

if __name__ == "__main__":
Expand Down

0 comments on commit 99a069d

Please sign in to comment.