Skip to content

Commit

Permalink
Add shebang to python scrips used in the project.
Browse files Browse the repository at this point in the history
This prevents the wrong interpreter from being used.
  • Loading branch information
moonheart08 authored and jacob1 committed Aug 14, 2019
1 parent b975dc2 commit dc70646
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions generator.py
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
import re, os, shutil, string, sys

def generateElements(elementFiles, outputCpp, outputH):
Expand Down
1 change: 1 addition & 0 deletions newelement.py
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
import sys
import re
import os
Expand Down
1 change: 1 addition & 0 deletions vsproject.py
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
import os
from pathlib import Path
import uuid
Expand Down

0 comments on commit dc70646

Please sign in to comment.