We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ace03a commit aa9ce14Copy full SHA for aa9ce14
2 files changed
buildAll.py
@@ -30,7 +30,7 @@
30
31
def getFontPaths(path):
32
fontsList = []
33
- for r, folders, files in os.walk(path):
+ for r, folders, files in os.walk(os.path.realpath(path)):
34
fileAndFolderList = folders[:]
35
fileAndFolderList.extend(files)
36
hintAll.py
@@ -1,4 +1,4 @@
1
-#!/usr/bin/python
+#!/usr/bin/env python
2
3
import os
4
import sys
0 commit comments